* feat: move state wrapper from container view to host view * fix(ios): call updateStateIfNeeded on every state update * fix(ios): handle device rotation and only track width changes * feat(android): align state update flow with iOS * chore: improve clean script with colors
21 lines
416 B
JavaScript
21 lines
416 B
JavaScript
module.exports = {
|
|
dependency: {
|
|
platforms: {
|
|
ios: {},
|
|
android: {
|
|
componentDescriptors: ['TrueSheetViewComponentDescriptor'],
|
|
cmakeListsPath: '../android/src/main/jni/CMakeLists.txt',
|
|
},
|
|
},
|
|
},
|
|
dependencies: {
|
|
'@lodev09/react-native-true-sheet': {
|
|
platforms: {
|
|
ios: {
|
|
configurations: ['Debug', 'Release'],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|