Skip to content

Commit

Permalink
Increase the size of IconButton
Browse files Browse the repository at this point in the history
  • Loading branch information
bouzuya committed Mar 28, 2023
1 parent 3fb9bf1 commit 4c9e15b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/accounts/[id]/categories/[categoryId]/edit.tsx
Expand Up @@ -33,6 +33,7 @@ export default function CategoryEdit(): JSX.Element {
accessibilityLabel="Save"
icon="check"
onPress={onClickOk}
size={28}
/>
),
}}
Expand Down
1 change: 1 addition & 0 deletions app/accounts/[id]/categories/new.tsx
Expand Up @@ -31,6 +31,7 @@ export default function CategoryNew(): JSX.Element {
accessibilityLabel="Save"
icon="check"
onPress={onClickOk}
size={28}
/>
),
}}
Expand Down
1 change: 1 addition & 0 deletions app/accounts/[id]/transactions/[transactionId]/edit.tsx
Expand Up @@ -45,6 +45,7 @@ export default function TransactionEdit(): JSX.Element {
accessibilityLabel="Save"
icon="check"
onPress={onClickOk}
size={28}
/>
),
}}
Expand Down
1 change: 1 addition & 0 deletions app/accounts/[id]/transactions/new.tsx
Expand Up @@ -41,6 +41,7 @@ export default function TransactionNew(): JSX.Element {
accessibilityLabel="Save"
icon="check"
onPress={onClickOk}
size={28}
/>
),
}}
Expand Down
1 change: 1 addition & 0 deletions app/accounts/new.tsx
Expand Up @@ -53,6 +53,7 @@ export default function AccountNew(): JSX.Element {
accessibilityLabel="Save"
icon="check"
onPress={onClickOk}
size={28}
/>
),
}}
Expand Down
2 changes: 1 addition & 1 deletion components/CategoryList.tsx
@@ -1,4 +1,4 @@
import { FlatList, FlatListProps, Text } from "react-native";
import { FlatList, FlatListProps } from "react-native";
import { List } from "react-native-paper";
import { Category } from "../lib/account";

Expand Down
1 change: 1 addition & 0 deletions components/TransactionForm.tsx
Expand Up @@ -74,6 +74,7 @@ export function TransactionForm({
},
});
}}
size={28}
/>
}
/>
Expand Down

0 comments on commit 4c9e15b

Please sign in to comment.