diff options
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/Deactivated.tsx | 6 | ||||
-rw-r--r-- | src/screens/E2E/SharedPreferencesTesterScreen.tsx | 12 | ||||
-rw-r--r-- | src/screens/Home/NoFeedsPinned.tsx | 4 | ||||
-rw-r--r-- | src/screens/List/ListHiddenScreen.tsx | 8 | ||||
-rw-r--r-- | src/screens/Login/ChooseAccountForm.tsx | 2 | ||||
-rw-r--r-- | src/screens/Login/ForgotPasswordForm.tsx | 6 | ||||
-rw-r--r-- | src/screens/Login/LoginForm.tsx | 6 | ||||
-rw-r--r-- | src/screens/Login/PasswordUpdatedForm.tsx | 2 | ||||
-rw-r--r-- | src/screens/Login/SetNewPasswordForm.tsx | 4 | ||||
-rw-r--r-- | src/screens/Messages/Conversation/ChatDisabled.tsx | 4 | ||||
-rw-r--r-- | src/screens/Messages/List/index.tsx | 2 | ||||
-rw-r--r-- | src/screens/Settings/components/DeactivateAccountDialog.tsx | 2 | ||||
-rw-r--r-- | src/screens/Signup/BackNextButtons.tsx | 6 | ||||
-rw-r--r-- | src/screens/StarterPack/StarterPackLandingScreen.tsx | 2 | ||||
-rw-r--r-- | src/screens/StarterPack/StarterPackScreen.tsx | 4 | ||||
-rw-r--r-- | src/screens/StarterPack/Wizard/index.tsx | 2 |
16 files changed, 36 insertions, 36 deletions
diff --git a/src/screens/Deactivated.tsx b/src/screens/Deactivated.tsx index 997fe419e..9b0b5b166 100644 --- a/src/screens/Deactivated.tsx +++ b/src/screens/Deactivated.tsx @@ -142,7 +142,7 @@ export function Deactivated() { <View style={[a.gap_sm]}> <Button label={_(msg`Reactivate your account`)} - size="medium" + size="large" variant="solid" color="primary" onPress={handleActivate}> @@ -153,7 +153,7 @@ export function Deactivated() { </Button> <Button label={_(msg`Cancel reactivation and log out`)} - size="medium" + size="large" variant="solid" color="secondary" onPress={onPressLogout}> @@ -212,7 +212,7 @@ export function Deactivated() { </Text> <Button label={_(msg`Log in or sign up`)} - size="medium" + size="large" variant="solid" color="secondary" onPress={() => setShowLoggedOut(true)}> diff --git a/src/screens/E2E/SharedPreferencesTesterScreen.tsx b/src/screens/E2E/SharedPreferencesTesterScreen.tsx index 380f1080b..06bf538ea 100644 --- a/src/screens/E2E/SharedPreferencesTesterScreen.tsx +++ b/src/screens/E2E/SharedPreferencesTesterScreen.tsx @@ -23,7 +23,7 @@ export function SharedPreferencesTesterScreen() { style={[a.self_center]} variant="solid" color="primary" - size="xsmall" + size="small" onPress={async () => { SharedPrefs.removeValue('testerString') SharedPrefs.setValue('testerString', 'Hello') @@ -39,7 +39,7 @@ export function SharedPreferencesTesterScreen() { style={[a.self_center]} variant="solid" color="primary" - size="xsmall" + size="small" onPress={async () => { SharedPrefs.removeValue('testerString') const str = SharedPrefs.getString('testerString') @@ -53,7 +53,7 @@ export function SharedPreferencesTesterScreen() { style={[a.self_center]} variant="solid" color="primary" - size="xsmall" + size="small" onPress={async () => { SharedPrefs.removeValue('testerBool') SharedPrefs.setValue('testerBool', true) @@ -68,7 +68,7 @@ export function SharedPreferencesTesterScreen() { style={[a.self_center]} variant="solid" color="primary" - size="xsmall" + size="small" onPress={async () => { SharedPrefs.removeValue('testerNumber') SharedPrefs.setValue('testerNumber', 123) @@ -83,7 +83,7 @@ export function SharedPreferencesTesterScreen() { style={[a.self_center]} variant="solid" color="primary" - size="xsmall" + size="small" onPress={async () => { SharedPrefs.removeFromSet('testerSet', 'Hello!') SharedPrefs.addToSet('testerSet', 'Hello!') @@ -98,7 +98,7 @@ export function SharedPreferencesTesterScreen() { style={[a.self_center]} variant="solid" color="primary" - size="xsmall" + size="small" onPress={async () => { SharedPrefs.removeFromSet('testerSet', 'Hello!') const contains = SharedPrefs.setContains('testerSet', 'Hello!') diff --git a/src/screens/Home/NoFeedsPinned.tsx b/src/screens/Home/NoFeedsPinned.tsx index 3a98b8734..74412763f 100644 --- a/src/screens/Home/NoFeedsPinned.tsx +++ b/src/screens/Home/NoFeedsPinned.tsx @@ -91,7 +91,7 @@ export function NoFeedsPinned({ <Button disabled={isPending} label={_(msg`Apply default recommended feeds`)} - size="medium" + size="large" variant="solid" color="primary" onPress={addRecommendedFeeds}> @@ -102,7 +102,7 @@ export function NoFeedsPinned({ <Link label={_(msg`Browse other feeds`)} to="/feeds" - size="medium" + size="large" variant="solid" color="secondary"> <ButtonIcon icon={ListSparkle} position="left" /> diff --git a/src/screens/List/ListHiddenScreen.tsx b/src/screens/List/ListHiddenScreen.tsx index 473bb08ea..e4354337a 100644 --- a/src/screens/List/ListHiddenScreen.tsx +++ b/src/screens/List/ListHiddenScreen.tsx @@ -152,7 +152,7 @@ export function ListHiddenScreen({ <Button variant="solid" color="secondary" - size="medium" + size="large" label={_(msg`Remove from saved feeds`)} onPress={onRemoveList} disabled={isProcessing}> @@ -168,7 +168,7 @@ export function ListHiddenScreen({ <Button variant="solid" color="secondary" - size="medium" + size="large" label={_(msg`Show list anyway`)} onPress={() => setIsContentVisible(true)} disabled={isProcessing}> @@ -180,7 +180,7 @@ export function ListHiddenScreen({ <Button variant="solid" color="secondary" - size="medium" + size="large" label={_(msg`Unsubscribe from list`)} onPress={() => { if (isModList) { @@ -204,7 +204,7 @@ export function ListHiddenScreen({ color="primary" label={_(msg`Return to previous page`)} onPress={goBack} - size="medium" + size="large" disabled={isProcessing}> <ButtonText> <Trans>Go Back</Trans> diff --git a/src/screens/Login/ChooseAccountForm.tsx b/src/screens/Login/ChooseAccountForm.tsx index 8c002b160..678ba5123 100644 --- a/src/screens/Login/ChooseAccountForm.tsx +++ b/src/screens/Login/ChooseAccountForm.tsx @@ -98,7 +98,7 @@ export const ChooseAccountForm = ({ label={_(msg`Back`)} variant="solid" color="secondary" - size="medium" + size="large" onPress={onPressBack}> <ButtonText>{_(msg`Back`)}</ButtonText> </Button> diff --git a/src/screens/Login/ForgotPasswordForm.tsx b/src/screens/Login/ForgotPasswordForm.tsx index 8588888b8..7acaae510 100644 --- a/src/screens/Login/ForgotPasswordForm.tsx +++ b/src/screens/Login/ForgotPasswordForm.tsx @@ -129,7 +129,7 @@ export const ForgotPasswordForm = ({ label={_(msg`Back`)} variant="solid" color="secondary" - size="medium" + size="large" onPress={onPressBack}> <ButtonText> <Trans>Back</Trans> @@ -143,7 +143,7 @@ export const ForgotPasswordForm = ({ label={_(msg`Next`)} variant="solid" color={'primary'} - size="medium" + size="large" onPress={onPressNext}> <ButtonText> <Trans>Next</Trans> @@ -170,7 +170,7 @@ export const ForgotPasswordForm = ({ onPress={onEmailSent} label={_(msg`Go to next`)} accessibilityHint={_(msg`Navigates to the next screen`)} - size="medium" + size="large" variant="ghost" color="secondary"> <ButtonText> diff --git a/src/screens/Login/LoginForm.tsx b/src/screens/Login/LoginForm.tsx index 9a01c0499..c2038b287 100644 --- a/src/screens/Login/LoginForm.tsx +++ b/src/screens/Login/LoginForm.tsx @@ -285,7 +285,7 @@ export const LoginForm = ({ label={_(msg`Back`)} variant="solid" color="secondary" - size="medium" + size="large" onPress={onPressBack}> <ButtonText> <Trans>Back</Trans> @@ -299,7 +299,7 @@ export const LoginForm = ({ accessibilityHint={_(msg`Retries login`)} variant="solid" color="secondary" - size="medium" + size="large" onPress={onPressRetryConnect}> <ButtonText> <Trans>Retry</Trans> @@ -319,7 +319,7 @@ export const LoginForm = ({ accessibilityHint={_(msg`Navigates to the next screen`)} variant="solid" color="primary" - size="medium" + size="large" onPress={onPressNext}> <ButtonText> <Trans>Next</Trans> diff --git a/src/screens/Login/PasswordUpdatedForm.tsx b/src/screens/Login/PasswordUpdatedForm.tsx index 5407f3f1e..03e7d8669 100644 --- a/src/screens/Login/PasswordUpdatedForm.tsx +++ b/src/screens/Login/PasswordUpdatedForm.tsx @@ -39,7 +39,7 @@ export const PasswordUpdatedForm = ({ accessibilityHint={_(msg`Closes password update alert`)} variant="solid" color="primary" - size="medium"> + size="large"> <ButtonText> <Trans>Okay</Trans> </ButtonText> diff --git a/src/screens/Login/SetNewPasswordForm.tsx b/src/screens/Login/SetNewPasswordForm.tsx index 88f7ec541..a6658621c 100644 --- a/src/screens/Login/SetNewPasswordForm.tsx +++ b/src/screens/Login/SetNewPasswordForm.tsx @@ -160,7 +160,7 @@ export const SetNewPasswordForm = ({ label={_(msg`Back`)} variant="solid" color="secondary" - size="medium" + size="large" onPress={onPressBack}> <ButtonText> <Trans>Back</Trans> @@ -174,7 +174,7 @@ export const SetNewPasswordForm = ({ label={_(msg`Next`)} variant="solid" color="primary" - size="medium" + size="large" onPress={onPressNext}> <ButtonText> <Trans>Next</Trans> diff --git a/src/screens/Messages/Conversation/ChatDisabled.tsx b/src/screens/Messages/Conversation/ChatDisabled.tsx index 23acc41cd..c768d2504 100644 --- a/src/screens/Messages/Conversation/ChatDisabled.tsx +++ b/src/screens/Messages/Conversation/ChatDisabled.tsx @@ -128,7 +128,7 @@ function DialogInner() { testID="backBtn" variant="solid" color="secondary" - size="medium" + size="large" onPress={onBack} label={_(msg`Back`)}> <ButtonText>{_(msg`Back`)}</ButtonText> @@ -137,7 +137,7 @@ function DialogInner() { testID="submitBtn" variant="solid" color="primary" - size="medium" + size="large" onPress={onSubmit} label={_(msg`Submit`)}> <ButtonText>{_(msg`Submit`)}</ButtonText> diff --git a/src/screens/Messages/List/index.tsx b/src/screens/Messages/List/index.tsx index e78239580..efd717f0b 100644 --- a/src/screens/Messages/List/index.tsx +++ b/src/screens/Messages/List/index.tsx @@ -198,7 +198,7 @@ export function MessagesScreen({navigation, route}: Props) { <Button label={_(msg`Reload conversations`)} - size="medium" + size="large" color="secondary" variant="solid" onPress={() => refetch()}> diff --git a/src/screens/Settings/components/DeactivateAccountDialog.tsx b/src/screens/Settings/components/DeactivateAccountDialog.tsx index 2be42d13e..6958b7a47 100644 --- a/src/screens/Settings/components/DeactivateAccountDialog.tsx +++ b/src/screens/Settings/components/DeactivateAccountDialog.tsx @@ -102,7 +102,7 @@ function DeactivateAccountDialogInner({ <Button variant="solid" color="negative" - size={gtMobile ? 'small' : 'medium'} + size={gtMobile ? 'small' : 'large'} label={_(msg`Yes, deactivate`)} onPress={handleDeactivate}> <ButtonText>{_(msg`Yes, deactivate`)}</ButtonText> diff --git a/src/screens/Signup/BackNextButtons.tsx b/src/screens/Signup/BackNextButtons.tsx index 73bd428c8..47256bf6f 100644 --- a/src/screens/Signup/BackNextButtons.tsx +++ b/src/screens/Signup/BackNextButtons.tsx @@ -34,7 +34,7 @@ export function BackNextButtons({ label={_(msg`Go back to previous step`)} variant="solid" color="secondary" - size="medium" + size="large" onPress={onBackPress}> <ButtonText> <Trans>Back</Trans> @@ -46,7 +46,7 @@ export function BackNextButtons({ label={_(msg`Press to retry`)} variant="solid" color="primary" - size="medium" + size="large" onPress={onRetryPress}> <ButtonText> <Trans>Retry</Trans> @@ -59,7 +59,7 @@ export function BackNextButtons({ label={_(msg`Continue to next step`)} variant="solid" color="primary" - size="medium" + size="large" disabled={isLoading || isNextDisabled} onPress={onNextPress}> <ButtonText> diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index 5f1d5e062..4d7f9ace9 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -308,7 +308,7 @@ function LandingScreenLoaded({ label={_(msg`Signup without a starter pack`)} variant="solid" color="secondary" - size="medium" + size="large" style={[a.py_lg]} onPress={onJoinWithoutPress}> <ButtonText> diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index 5b267ff27..0aa863f7b 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -449,7 +449,7 @@ function Header({ }} variant="solid" color="primary" - size="medium"> + size="large"> <ButtonText style={[a.text_lg]}> <Trans>Join Bluesky</Trans> </ButtonText> @@ -645,7 +645,7 @@ function OverflowMenu({ <Button variant="solid" color="negative" - size={gtMobile ? 'small' : 'medium'} + size={gtMobile ? 'small' : 'large'} label={_(msg`Yes, delete this starter pack`)} onPress={onDeleteStarterPack}> <ButtonText> diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index 40a4a510b..29ef44ee0 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -358,7 +358,7 @@ function Container({children}: {children: React.ReactNode}) { label={_(msg`Next`)} variant="solid" color="primary" - size="medium" + size="large" style={[a.mx_xl, a.mb_lg, {marginTop: 35}]} onPress={() => dispatch({type: 'Next'})}> <ButtonText> |