Files
projet_gestion_commande/frontend-admin/node_modules/react-native-webview/src/WebView.styles.ts
T
2026-02-07 22:33:02 +01:00

42 lines
710 B
TypeScript

import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
container: {
flex: 1,
overflow: 'hidden',
},
loadingOrErrorView: {
position: 'absolute',
flex: 1,
justifyContent: 'center',
alignItems: 'center',
height: '100%',
width: '100%',
backgroundColor: 'white',
},
loadingProgressBar: {
height: 20,
},
errorText: {
fontSize: 14,
textAlign: 'center',
marginBottom: 2,
},
errorTextTitle: {
fontSize: 15,
fontWeight: '500',
marginBottom: 10,
},
webView: {
backgroundColor: '#ffffff',
},
flexStart: {
alignSelf: 'flex-start',
},
colorRed: {
color: 'red',
},
});
export default styles;