This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"success": true, | |
"status_code": 200, | |
"message_code": "success-info", | |
"message_text": "عملیات با موفقیت انجام شد.", | |
"data": { | |
"session": { | |
"id": 100, | |
"name": "NVD7-A123-BW", | |
"description": "-", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Animated, {useAnimatedProps} from 'react-native-reanimated' | |
const AnimatedText = Animated.createAnimatedComponent(Text) | |
const Example = ({progress = 0}) => { | |
const animatedTextProps = useAnimatedProps(() => { | |
return { | |
x: 0, | |
y: 0, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
package_update: true | |
package_upgrade: true | |
packages: | |
- ca-certificates | |
- curl | |
- gnupg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/react-native-video/ios/Video/Features/RCTPlayerObserver.swift b/node_modules/react-native-video/ios/Video/Features/RCTPlayerObserver.swift | |
index 68fc56d..d3951dd 100644 | |
--- a/node_modules/react-native-video/ios/Video/Features/RCTPlayerObserver.swift | |
+++ b/node_modules/react-native-video/ios/Video/Features/RCTPlayerObserver.swift | |
@@ -144,7 +144,7 @@ class RCTPlayerObserver: NSObject { | |
// @see endScrubbing in AVPlayerDemoPlaybackViewController.m | |
// of https://developer.apple.com/library/ios/samplecode/AVPlayerDemo/Introduction/Intro.html | |
_timeObserver = player?.addPeriodicTimeObserver( | |
- forInterval: CMTimeMakeWithSeconds(progressUpdateIntervalMS, preferredTimescale: Int32(NSEC_PER_SEC)), | |
+ forInterval: CMTimeMakeWithSeconds(progressUpdateIntervalMS, Int32(NSEC_PER_SEC)), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface BaseAuthProvider { | |
initialize(): void; | |
login(): void; | |
} | |
export class GoogleSignin implements BaseAuthProvider { | |
initialize(): void { | |
throw new Error("Method not implemented."); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react'; | |
import {View, Text, Button} from 'react-native'; | |
import {NavigationContainer} from '@react-navigation/native'; | |
import {createNativeStackNavigator} from '@react-navigation/native-stack'; | |
function HomeScreen({navigation}) { | |
return ( | |
<View style={{flex: 1, alignItems: 'center', justifyContent: 'center'}}> | |
<Text>Home Screen</Text> | |
<Button |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/@amityco/ts-sdk/dist/index.cjs.js b/node_modules/@amityco/ts-sdk/dist/index.cjs.js | |
index 592dbad..4cee65c 100644 | |
--- a/node_modules/@amityco/ts-sdk/dist/index.cjs.js | |
+++ b/node_modules/@amityco/ts-sdk/dist/index.cjs.js | |
@@ -2993,9 +2993,9 @@ const removeCommunityMembersRole = async (communityId, roleId, userIds) => { | |
* @async | |
*/ | |
const deletePost = async (postId, permanent = false) => { | |
- var _a; | |
const client = getActiveClient(); |