Skip to content

Commit e771cf9

Browse files
committed
refactor: unify Menu, Settings, Tools with a shared search navigation
1 parent 26c1a9d commit e771cf9

6 files changed

Lines changed: 1224 additions & 1777 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
export const settingsListStyleDefinitions = {
2+
columnField: {
3+
flex: 1,
4+
flexDirection: 'row' as const,
5+
marginVertical: 8,
6+
alignItems: 'center' as const
7+
},
8+
icon: {
9+
width: 50,
10+
alignItems: 'center' as const,
11+
justifyContent: 'center' as const
12+
},
13+
columnText: {
14+
fontSize: 16,
15+
flex: 1,
16+
fontFamily: 'PPNeueMontreal-Book'
17+
},
18+
separationLine: {
19+
borderColor: '#A7A9AC',
20+
opacity: 0.2,
21+
borderWidth: 0.5,
22+
marginLeft: 50,
23+
marginRight: 40
24+
},
25+
ForwardArrow: {
26+
alignItems: 'flex-end' as const,
27+
padding: 6,
28+
marginRight: 6
29+
}
30+
};

0 commit comments

Comments
 (0)