mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-05 22:56:11 +00:00
# Summary Due to the large number of example apps in the repository, I decided to change the structure and move all applications into an "apps" folder to maintain a clear structure.
39 lines
658 B
TypeScript
39 lines
658 B
TypeScript
import {StyleSheet} from 'react-native';
|
|
|
|
export const commonStyles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
},
|
|
center: {
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
list: {
|
|
backgroundColor: '#EFEFF4',
|
|
width: '100%',
|
|
},
|
|
separator: {
|
|
height: 1,
|
|
backgroundColor: '#DBDBE0',
|
|
},
|
|
button: {
|
|
flex: 1,
|
|
height: 60,
|
|
padding: 15,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
backgroundColor: 'white',
|
|
},
|
|
disabledButton: {
|
|
backgroundColor: 'grey',
|
|
opacity: 0.5,
|
|
},
|
|
title: {
|
|
fontSize: 16,
|
|
color: 'black',
|
|
},
|
|
visitedItem: {
|
|
backgroundColor: '#e6f0f7',
|
|
},
|
|
});
|