react-native-true-sheet/example/app.json
Jovanni Lo 28d2c186d8
feat: add initialIndex & onMount props (#30)
* chore: upgrade deps

* refactor: rename types file

* feat(ios): add `initialIndex` prop

* feat(ios): add `onLoad`

* feat: add maps demo

* docs: update docs

* chore: upgrade docs

* feat(android): implement `initialIndex` & `onLoad`

* refactor: rename to `onReady`

* fix: fix size change issue

* refactor: rename event

* feat(ios): add `animateOnMount`

* feat(android): implement `initialIndexAnimated`

* chore: example deps

* refactor: files

* chore: example deps

* docs: add `initialIndexAnimated` prop doc

* docs: preview
2024-06-11 00:27:12 +08:00

48 lines
1.0 KiB
JSON

{
"expo": {
"name": "TrueSheetExample",
"slug": "TrueSheetExample",
"version": "1.0.0",
"icon": "./assets/icon.png",
"userInterfaceStyle": "dark",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.lodev09.truesheet"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.lodev09.truesheet",
"config": {
"googleMaps": {
"apiKey": "AIzaSyBeaou3cjmq_BED6HlTRdg5fSyArUCzoTM"
}
}
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"expo-build-properties",
{
"ios": {
"newArchEnabled": false
},
"android": {
"newArchEnabled": false
}
}
]
]
}
}