-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: bump iOS and Android dependencies to support elastic easing and…
… nested inputs
- Loading branch information
Showing
13 changed files
with
74 additions
and
20 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
RiveReactNative_kotlinVersion=1.8.10 | ||
RiveReactNative_compileSdkVersion=33 | ||
RiveReactNative_compileSdkVersion=34 | ||
RiveReactNative_buildToolsVersion=30.0.3 | ||
RiveReactNative_targetSdkVersion=33 | ||
RiveReactNative_targetSdkVersion=34 |
This file contains 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
Binary file not shown.
This file contains 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
This file contains 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
Binary file not shown.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import * as React from 'react'; | ||
import { SafeAreaView, ScrollView, StyleSheet } from 'react-native'; | ||
import Rive, { Alignment, Fit } from 'rive-react-native'; | ||
|
||
export default function NestedInputs() { | ||
return ( | ||
<SafeAreaView style={styles.safeAreaViewContainer}> | ||
<ScrollView contentContainerStyle={styles.container}> | ||
<Rive | ||
fit={Fit.Contain} | ||
alignment={Alignment.Center} | ||
style={styles.animation} | ||
artboardName={'Main Artboard'} | ||
autoplay={true} | ||
stateMachineName="State Machine 1" | ||
resourceName={'nested_menu'} | ||
/> | ||
</ScrollView> | ||
</SafeAreaView> | ||
); | ||
} | ||
|
||
const styles = StyleSheet.create({ | ||
safeAreaViewContainer: { | ||
flex: 1, | ||
}, | ||
container: { | ||
flexGrow: 1, | ||
alignItems: 'center', | ||
justifyContent: 'center', | ||
}, | ||
animation: { | ||
width: '100%', | ||
height: 300, | ||
}, | ||
}); |
This file contains 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