-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: some progress * feat: more progress * fix: fonts & more progress * fix: darkmode * fix: ui improvements * fix: ui cleanup * fix: ui * fix: main buttons on iOS * feat: gradient on main buttons * chore: add prettier * fix: make transactions link easier to click * feat: nice transactions page routing * feat: subtle animation on main button press * chore: format * feat: replace main button icons * fix: click outside inputs to close * fix: invert scale transitions, text colors * fix: autofocus * fix: loading states & button icons * fix: use system theme * fix: cleanup * fix: fonts * fix: cleanup & transaction detail * fix: wallet selection * feat: balance state switcher * fix: unify scales * fix: notification capability * fix: unify elevation * fix: cleanup --------- Co-authored-by: Roland Bewick <roland.bewick@gmail.com>
- Loading branch information
Showing
45 changed files
with
1,149 additions
and
839 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Ignore artifacts: | ||
build | ||
coverage | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"tabWidth": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { Transactions } from "../pages/Transactions"; | ||
|
||
export default function Page() { | ||
return <Transactions />; | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { LinearGradient } from "expo-linear-gradient"; | ||
import { View } from "react-native"; | ||
import QRCodeLibrary from "react-native-qrcode-svg"; | ||
|
||
|
||
function QRCode({ value }: { value: string }) { | ||
return ( | ||
<LinearGradient | ||
className="p-2 rounded-2xl flex items-center justify-center" | ||
colors={['#FFC453', '#FFE951']} | ||
start={[0, 1]} | ||
end={[1, 0]} | ||
style={{ borderRadius: 28, elevation: 2 }} | ||
> | ||
<View className="flex items-center justify-center p-3 rounded-3xl bg-white w-96 h-96"> | ||
<QRCodeLibrary value={value} size={300} /> | ||
</View> | ||
</LinearGradient> | ||
); | ||
} | ||
|
||
export default QRCode; |
Oops, something went wrong.