fix color
This commit is contained in:
parent
a4b5ca00fe
commit
806d3a8826
|
@ -17,6 +17,7 @@ import { Services } from '../../lib/services';
|
|||
import { getUserSelector } from '../../selectors/login';
|
||||
import { showErrorAlert } from '../../lib/methods/helpers';
|
||||
import log, { events, logEvent } from '../../lib/methods/helpers/log';
|
||||
import { useTheme } from '../../theme';
|
||||
|
||||
interface IStatus {
|
||||
id: TUserStatus;
|
||||
|
@ -53,7 +54,9 @@ const styles = StyleSheet.create({
|
|||
},
|
||||
inputStyle: {
|
||||
paddingLeft: 48,
|
||||
borderRadius: 0
|
||||
borderRadius: 0,
|
||||
borderTopWidth: 1,
|
||||
borderBottomWidth: 1
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -96,6 +99,8 @@ const StatusView = (): React.ReactElement => {
|
|||
const dispatch = useDispatch();
|
||||
const { setOptions, goBack } = useNavigation();
|
||||
|
||||
const { colors } = useTheme();
|
||||
|
||||
useEffect(() => {
|
||||
const submit = async () => {
|
||||
logEvent(events.STATUS_DONE);
|
||||
|
@ -161,6 +166,7 @@ const StatusView = (): React.ReactElement => {
|
|||
}
|
||||
ListFooterComponent={List.Separator}
|
||||
ItemSeparatorComponent={List.Separator}
|
||||
style={{ backgroundColor: colors.surfaceTint }}
|
||||
/>
|
||||
</SafeAreaView>
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue