30 lines
474 B
TypeScript
30 lines
474 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
export const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
},
|
|
loadingContainer: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
webview: {
|
|
flex: 1,
|
|
},
|
|
testButton: {
|
|
position: 'absolute',
|
|
bottom: 40,
|
|
right: 20,
|
|
backgroundColor: 'blue',
|
|
paddingHorizontal: 16,
|
|
paddingVertical: 12,
|
|
borderRadius: 8,
|
|
},
|
|
|
|
testButtonText: {
|
|
color: '#fff',
|
|
fontWeight: '600',
|
|
},
|
|
});
|