react-crud-mobile 1.3.180 → 1.3.182

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-crud-mobile",
3
- "version": "1.3.180",
3
+ "version": "1.3.182",
4
4
  "license": "MIT",
5
5
  "description": "Uma biblioteca de componentes para React Native",
6
6
  "main": "dist/index.js",
@@ -47,7 +47,7 @@ export default function SafeView(props: SafeViewType) {
47
47
  behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
48
48
  style={{
49
49
  flex: 1, // 🔹 Ocupa 100% da tela
50
- justifyContent: 'center',
50
+ justifyContent: 'flex-start',
51
51
  }}
52
52
  >
53
53
  <TouchableWithoutFeedback
@@ -111,7 +111,7 @@ export default function UIOrder(props: ChildType) {
111
111
  ListHeaderComponent={<UIHeader scope={scope} />}
112
112
  ListFooterComponent={<>{scope.getPart('footer')}</>}
113
113
  renderItem={renderItem}
114
- containerStyle={{ ...scope.getPart('list') }}
114
+ containerStyle={{ ...scope.getStyle('list') }}
115
115
  keyExtractor={item => {
116
116
  let key = scope.getItemValue(item);
117
117