|
@@ -2,6 +2,7 @@
|
2
|
2
|
|
3
|
3
|
import { StyleSheet } from 'react-native';
|
4
|
4
|
|
|
5
|
+import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
|
5
|
6
|
import { ColorSchemeRegistry, schemeColor } from '../../../color-scheme';
|
6
|
7
|
import { BoxModel, ColorPalette } from '../../../styles';
|
7
|
8
|
import { PREFERRED_DIALOG_SIZE } from '../../constants';
|
|
@@ -192,9 +193,16 @@ ColorSchemeRegistry.register('BottomSheet', {
|
192
|
193
|
* Bottom sheet's base style.
|
193
|
194
|
*/
|
194
|
195
|
sheet: {
|
195
|
|
- backgroundColor: ColorPalette.black,
|
|
196
|
+ backgroundColor: BaseTheme.palette.ui02,
|
196
|
197
|
borderTopLeftRadius: 16,
|
197
|
198
|
borderTopRightRadius: 16
|
|
199
|
+ },
|
|
200
|
+
|
|
201
|
+ /**
|
|
202
|
+ * Bottom sheet's base style with header.
|
|
203
|
+ */
|
|
204
|
+ sheetHeader: {
|
|
205
|
+ backgroundColor: BaseTheme.palette.ui02
|
198
|
206
|
}
|
199
|
207
|
});
|
200
|
208
|
|