Some notes from my successes and failures.
From the official docs
It is a client-server program that includes three components: >
| uses | |
| Skia, Skia.FMX.Graphics; | |
| procedure TForm1.SkPaintBox1Draw(ASender: TObject; const ACanvas: ISkCanvas; | |
| const ADest: TRectF; const AOpacity: Single); | |
| var | |
| LTextLayout: TSkTextLayout; | |
| LPaint: ISkPaint; | |
| begin | |
| LTextLayout := TSkTextLayout.Create; |
Some notes from my successes and failures.
From the official docs
It is a client-server program that includes three components: >
| public class CountryFlags { | |
| private static String A = getEmojiByUnicode(0x1F1E6); | |
| private static String B = getEmojiByUnicode(0x1F1E7); | |
| private static String C = getEmojiByUnicode(0x1F1E8); | |
| private static String D = getEmojiByUnicode(0x1F1E9); | |
| private static String E = getEmojiByUnicode(0x1F1EA); | |
| private static String F = getEmojiByUnicode(0x1F1EB); | |
| private static String G = getEmojiByUnicode(0x1F1EC); | |
| private static String H = getEmojiByUnicode(0x1F1ED); | |
| private static String I = getEmojiByUnicode(0x1F1EE); |
| //HTTP status code from: https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml | |
| unit uHTTPStatus; | |
| interface | |
| const | |
| StatusContinue = 100; //[RFC7231, Section 6.2.1] | |
| StatusSwitchingProtocols = 101; //[RFC7231, Section 6.2.2] | |
| StatusProcessing = 102; //[RFC2518] |