Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
da35951
squares and new to wallets
Aug 30, 2023
383f3b6
Merge branch 'main' into ike/cwv3
Sep 5, 2023
21e8082
rows
Sep 6, 2023
1637644
Merge branch 'main' into ike/cwv3
Sep 6, 2023
5acc9de
Merge branch 'main' into ike/cwv3
Sep 6, 2023
8ce4e3e
Merge branch 'main' into ike/cwv3
Sep 6, 2023
02f4a38
Connect revamp
Sep 7, 2023
53b619f
comments
Sep 7, 2023
a193081
Merge branch 'main' into ike/cwv3
Sep 7, 2023
02e0b55
changeset
Sep 7, 2023
847c4c6
fix theme
Sep 7, 2023
76cdd45
Merge branch 'main' into ike/cwv3
Sep 8, 2023
8f1a0b1
recommended and getstarted
Sep 8, 2023
e6c2cd9
changeset
Sep 8, 2023
b5aca53
merge
Sep 11, 2023
4b634a5
fix textinput props
Sep 11, 2023
4edb1a7
Merge branch 'main' into ike/cwv3
Sep 11, 2023
55ec4bc
adds tos and privacypolicy urls
Sep 11, 2023
bf04e94
Merge branch 'main' into ike/cwv3
Sep 12, 2023
f3fe2db
improve theme customization
Sep 12, 2023
450d7c8
Merge branch 'main' into ike/cwv3
Sep 12, 2023
015c569
merge
Sep 20, 2023
1477f60
Merge branch 'main' into ike/cwv3
Sep 20, 2023
6c79aad
Send Receive Transaction
Sep 22, 2023
d31dedd
Merge branch 'main' into ike/cwv3
Sep 22, 2023
e8521ac
clean
Sep 22, 2023
a17b2a1
scroll and img
Sep 22, 2023
c08525d
Merge branch 'main' into ike/cwv3
Sep 22, 2023
84b6aeb
final version
Sep 22, 2023
1d3a7f8
Merge branch 'main' into ike/cwv3
Sep 25, 2023
4d92a40
ui fix
Sep 25, 2023
7343159
Merge branch 'main' into ike/cwv3
Sep 26, 2023
d303a94
chains
Sep 26, 2023
aa24f88
merge
Sep 27, 2023
72137f6
[RN] Lots of small UI fixes
Sep 27, 2023
7174c12
Merge branch 'main' into ike/cwv3
Sep 27, 2023
09f0ae7
Merge branch 'main' into ike/cwv3
Sep 27, 2023
891a454
[RN] Minor version bump
Sep 27, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fresh-cats-develop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@thirdweb-dev/react-native": minor
---

Minor version bump for React Native
8 changes: 4 additions & 4 deletions packages/react-native/src/evm/styles/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ export const paletteBase = {
};

export const paletteLight: Palette = {
buttonBackgroundColor: "white",
buttonTextColor: "black",
buttonBackgroundColor: "black",
buttonTextColor: "white",

accentButtonColor: "#3385FF",
accentButtonTextColor: "white",
Expand All @@ -66,8 +66,8 @@ export const paletteLight: Palette = {
};

export const paletteDark: Palette = {
buttonBackgroundColor: "black",
buttonTextColor: "white",
buttonBackgroundColor: "white",
buttonTextColor: "black",

accentButtonColor: "#3385FF",
accentButtonTextColor: "white",
Expand Down