Searched refs:getStringAsync (Results 1 – 18 of 18) sorted by relevance
30 fun getStringAsync(options: GetStringOptions = GetStringOptions()): String method53 val readResult = module.getStringAsync()64 val content = module.getStringAsync()70 fun `getStringAsync should support HTML`() = withClipboardMock {75 val plainResult = module.getStringAsync()76 val htmlResult = module.getStringAsync(
13 export async function getStringAsync(options = {}) { function14 if (!ExpoClipboard.getStringAsync) {17 return await ExpoClipboard.getStringAsync(options);
22 export declare function getStringAsync(options?: GetStringOptions): Promise<string>; function
1 …getStringAsync()`](#getstringasyncoptions) instead to retrieve clipboard content.\n */\n conten…
37 export async function getStringAsync(options: GetStringOptions = {}): Promise<string> { function38 if (!ExpoClipboard.getStringAsync) {41 return await ExpoClipboard.getStringAsync(options);
25 const result = await Clipboard.getStringAsync();39 const result = await Clipboard.getStringAsync({51 const result = await Clipboard.getStringAsync({59 const result = await Clipboard.getStringAsync({
4 getStringAsync(options: GetStringOptions): Promise<string>; constant
8 async getStringAsync(options) {
1 …\n get name(): string {\n return 'ExpoClipboard';\n },\n async getStringAsync(options: GetSt…
10 expect(Clipboard.getStringAsync).toBeDefined();
68 name: 'getStringAsync',86 const result = await Clipboard.getStringAsync(options);
28 async getStringAsync(options: GetStringOptions): Promise<string> {
104 …ays returns empty string and logs a warning message to the console. Use `getStringAsync()` instead.112 - Added support for HTML content in `getStringAsync` and `setStringAsync`. ([#16551](https://github…159 - Fixed `getStringAsync` causing crashes on Web when an exception is thrown. ([#12494](https://gith…
40 const text = /* @info Paste the text from the clipboard */ await Clipboard.getStringAsync();