-
-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathoptions.ts
More file actions
97 lines (96 loc) · 2.25 KB
/
options.ts
File metadata and controls
97 lines (96 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import { ScreenNames } from "../../constants/screenNames";
export const options = {
[ScreenNames.ANIMATED_EXAMPLE]: {
title: "Keyboard animation ⌨️",
},
[ScreenNames.REANIMATED_CHAT]: {
title: "Chat",
},
[ScreenNames.REANIMATED_CHAT_FLAT_LIST]: {
title: "Chat FlatList",
},
[ScreenNames.EVENTS]: {
title: "Events",
},
[ScreenNames.AWARE_SCROLL_VIEW]: {
title: "Aware scroll view",
},
[ScreenNames.AWARE_SCROLL_VIEW_STICKY_FOOTER]: {
title: "Aware scroll view sticky footer",
},
[ScreenNames.STATUS_BAR]: {
headerShown: false,
title: "Status bar manipulation",
},
[ScreenNames.LOTTIE]: {
title: "Lottie animation",
},
[ScreenNames.NON_UI_PROPS]: {
title: "Non UI Props",
},
[ScreenNames.INTERACTIVE_KEYBOARD]: {
title: "Interactive keyboard",
},
[ScreenNames.INTERACTIVE_KEYBOARD_IOS]: {
title: "Interactive keyboard 🍏",
},
[ScreenNames.NATIVE_STACK]: {
title: "Native stack",
},
[ScreenNames.KEYBOARD_AVOIDING_VIEW]: {
title: "KAV",
},
[ScreenNames.KEYBOARD_AVOIDING_VIEW_AUTOMATIC]: {
title: "KAV Automatic",
},
[ScreenNames.ENABLED_DISABLED]: {
title: "Enabled/disabled",
},
[ScreenNames.CLOSE]: {
title: "Close keyboard",
},
[ScreenNames.FOCUSED_INPUT_HANDLERS]: {
title: "Focused input handlers",
},
[ScreenNames.TOOLBAR]: {
title: "Toolbar",
},
[ScreenNames.MODAL]: {
title: "Modal",
},
[ScreenNames.BOTTOM_TAB_BAR]: {
headerShown: false,
},
[ScreenNames.OVER_KEYBOARD_VIEW]: {
title: "View over keyboard",
},
[ScreenNames.IMAGE_GALLERY]: {
title: "Image gallery",
},
[ScreenNames.USE_KEYBOARD_STATE]: {
title: "useKeyboardState",
},
[ScreenNames.LIQUID_KEYBOARD]: {
title: "Liquid keyboard",
headerShown: false,
},
[ScreenNames.KEYBOARD_SHARED_TRANSITIONS]: {
title: "Keyboard shared transitions",
headerShown: false,
},
[ScreenNames.KEYBOARD_EXTENDER]: {
title: "Keyboard Extender",
headerShown: false,
},
[ScreenNames.CHAT_KIT]: {
title: "Chat Kit",
headerTintColor: "#fff",
headerStyle: {
backgroundColor: "#3A3A3C",
},
headerBackTitle: "Back",
},
[ScreenNames.AI_LEGEND_LIST_CHAT]: {
title: "AI LegendList Chat",
},
};