diff --git a/app/accounts/[id]/categories/[categoryId]/edit.tsx b/app/accounts/[id]/categories/[categoryId]/edit.tsx index 7a6967d..6755a4c 100644 --- a/app/accounts/[id]/categories/[categoryId]/edit.tsx +++ b/app/accounts/[id]/categories/[categoryId]/edit.tsx @@ -33,6 +33,7 @@ export default function CategoryEdit(): JSX.Element { accessibilityLabel="Save" icon="check" onPress={onClickOk} + size={28} /> ), }} diff --git a/app/accounts/[id]/categories/new.tsx b/app/accounts/[id]/categories/new.tsx index 80b3048..3539cba 100644 --- a/app/accounts/[id]/categories/new.tsx +++ b/app/accounts/[id]/categories/new.tsx @@ -31,6 +31,7 @@ export default function CategoryNew(): JSX.Element { accessibilityLabel="Save" icon="check" onPress={onClickOk} + size={28} /> ), }} diff --git a/app/accounts/[id]/transactions/[transactionId]/edit.tsx b/app/accounts/[id]/transactions/[transactionId]/edit.tsx index eedcde3..1ad7fc4 100644 --- a/app/accounts/[id]/transactions/[transactionId]/edit.tsx +++ b/app/accounts/[id]/transactions/[transactionId]/edit.tsx @@ -45,6 +45,7 @@ export default function TransactionEdit(): JSX.Element { accessibilityLabel="Save" icon="check" onPress={onClickOk} + size={28} /> ), }} diff --git a/app/accounts/[id]/transactions/new.tsx b/app/accounts/[id]/transactions/new.tsx index d0f4081..6c8c7a4 100644 --- a/app/accounts/[id]/transactions/new.tsx +++ b/app/accounts/[id]/transactions/new.tsx @@ -41,6 +41,7 @@ export default function TransactionNew(): JSX.Element { accessibilityLabel="Save" icon="check" onPress={onClickOk} + size={28} /> ), }} diff --git a/app/accounts/new.tsx b/app/accounts/new.tsx index 6b6f93d..3a7bc77 100644 --- a/app/accounts/new.tsx +++ b/app/accounts/new.tsx @@ -53,6 +53,7 @@ export default function AccountNew(): JSX.Element { accessibilityLabel="Save" icon="check" onPress={onClickOk} + size={28} /> ), }} diff --git a/components/CategoryList.tsx b/components/CategoryList.tsx index 1612923..bde35d9 100644 --- a/components/CategoryList.tsx +++ b/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"; diff --git a/components/TransactionForm.tsx b/components/TransactionForm.tsx index c5d37d0..7e46e13 100644 --- a/components/TransactionForm.tsx +++ b/components/TransactionForm.tsx @@ -74,6 +74,7 @@ export function TransactionForm({ }, }); }} + size={28} /> } />