Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3350618
D3798.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D3798.diff
View Options
diff --git a/native/components/color-selector.react.js b/native/components/color-selector.react.js
new file mode 100644
--- /dev/null
+++ b/native/components/color-selector.react.js
@@ -0,0 +1,57 @@
+// @flow
+
+import * as React from 'react';
+import { Text, View, StyleSheet } from 'react-native';
+
+import ColorSelectorButton from './color-selector-button.react';
+
+function ColorSelector(): React.Node {
+ return (
+ <View style={styles.container}>
+ <View style={styles.textContainer}>
+ <Text style={styles.text}>Select thread color</Text>
+ </View>
+ <View style={styles.colorButtons}>
+ <ColorSelectorButton color="#4B87AA" />
+ <ColorSelectorButton color="#5C9F5F" />
+ <ColorSelectorButton color="#B8753D" />
+ <ColorSelectorButton color="#AA4B4B" />
+ <ColorSelectorButton color="#6D49AB" />
+ <ColorSelectorButton color="#C85000" />
+ <ColorSelectorButton color="#008F83" />
+ <ColorSelectorButton color="#648CAA" />
+ <ColorSelectorButton color="#57697F" />
+ <ColorSelectorButton color="#575757" />
+ </View>
+ </View>
+ );
+}
+
+const styles = StyleSheet.create({
+ colorButtons: {
+ alignItems: 'center',
+ display: 'flex',
+ flex: 1,
+ flexDirection: 'row',
+ flexWrap: 'wrap',
+ justifyContent: 'center',
+ },
+ container: {
+ alignItems: 'center',
+ display: 'flex',
+ flex: 1,
+ flexDirection: 'column',
+ flexWrap: 'wrap',
+ justifyContent: 'center',
+ },
+ text: {
+ color: 'white',
+ fontSize: 24,
+ fontWeight: 'bold',
+ },
+ textContainer: {
+ margin: 20,
+ },
+});
+
+export default ColorSelector;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 23, 11:23 PM (20 h, 16 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2572771
Default Alt Text
D3798.diff (1 KB)
Attached To
Mode
D3798: [native] Introduce `ColorSelector` component
Attached
Detach File
Event Timeline
Log In to Comment