From 3d616c5d445919c476aa926c6d2c44db38cbab37 Mon Sep 17 00:00:00 2001 From: Ivan Chen Date: Tue, 20 Jul 2021 17:38:04 -0400 Subject: Move out width style --- src/components/common/GradientProgressBar.tsx | 3 +-- src/components/moments/MomentUploadProgressBar.tsx | 10 ++++++---- 2 files changed, 7 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/components/common/GradientProgressBar.tsx b/src/components/common/GradientProgressBar.tsx index 3483f8ac..2f7f0431 100644 --- a/src/components/common/GradientProgressBar.tsx +++ b/src/components/common/GradientProgressBar.tsx @@ -6,7 +6,7 @@ import { TAGG_LIGHT_BLUE_3, TAGG_PURPLE, } from '../../constants'; -import {normalize, SCREEN_WIDTH} from '../../utils'; +import {normalize} from '../../utils'; interface GradientProgressBarProps extends ViewProps { progress: number; @@ -30,7 +30,6 @@ const styles = StyleSheet.create({ borderRadius: 6.5, }, bar: { - width: SCREEN_WIDTH * 0.9, height: normalize(10), borderRadius: 6.5, }, diff --git a/src/components/moments/MomentUploadProgressBar.tsx b/src/components/moments/MomentUploadProgressBar.tsx index bbd0cb06..7310727e 100644 --- a/src/components/moments/MomentUploadProgressBar.tsx +++ b/src/components/moments/MomentUploadProgressBar.tsx @@ -1,11 +1,10 @@ -import React, {useState} from 'react'; +import React from 'react'; import {StyleSheet, Text} from 'react-native'; import {View} from 'react-native-animatable'; -import Animated, {useSharedValue} from 'react-native-reanimated'; import {SafeAreaView} from 'react-native-safe-area-context'; import {useSelector} from 'react-redux'; import {RootState} from '../../store/rootReducer'; -import {normalize, StatusBarHeight} from '../../utils'; +import {normalize, SCREEN_WIDTH, StatusBarHeight} from '../../utils'; import {GradientProgressBar} from '../common'; interface MomentUploadProgressBarProps {} @@ -23,7 +22,7 @@ const MomentUploadProgressBar: React.FC = Uploading Moment... - + ); @@ -48,6 +47,9 @@ const styles = StyleSheet.create({ lineHeight: 17, marginVertical: 12, }, + bar: { + width: SCREEN_WIDTH * 0.9, + }, }); export default MomentUploadProgressBar; -- cgit v1.2.3-70-g09d2