diff --git a/src/screens/otherMethod/index.tsx b/src/screens/otherMethod/index.tsx index f6c404d..677f17f 100644 --- a/src/screens/otherMethod/index.tsx +++ b/src/screens/otherMethod/index.tsx @@ -1,5 +1,5 @@ import {ScrollView, StatusBar, View} from 'react-native'; -import {Text} from 'react-native-paper'; +import {Text, Button} from 'react-native-paper'; import styles from './styles'; import Icon from 'react-native-vector-icons/MaterialCommunityIcons'; import Colors from '../../../assets/styles/Colors'; @@ -200,6 +200,9 @@ function OtherMethodScreen() { + ); } diff --git a/src/screens/otherMethod/styles.tsx b/src/screens/otherMethod/styles.tsx index b16d8d1..d967dbf 100644 --- a/src/screens/otherMethod/styles.tsx +++ b/src/screens/otherMethod/styles.tsx @@ -72,6 +72,11 @@ const styles = StyleSheet.create({ paymentMethodOptionDataWrapper: { marginBottom: 4, }, + buttonPayNow: { + backgroundColor: Colors.primary30.color, + marginHorizontal: 16, + marginBottom: 16, + }, }); export default styles;