Skip to content

Commit

Permalink
refactor everything to composable routes
Browse files Browse the repository at this point in the history
  • Loading branch information
trbutler4 committed Oct 18, 2024
1 parent 299ce17 commit b72930f
Show file tree
Hide file tree
Showing 16 changed files with 340 additions and 1,046 deletions.
10 changes: 5 additions & 5 deletions wallet_app/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
</intent-filter>
</activity>
<activity
android:name=".SendActivity"
android:name=".ui.transfer.SendActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>
<activity
android:name=".ReceiverActivity"
android:name=".ui.transfer.ReceiverActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>
<activity android:name=".AddTokenActivity"
<activity android:name=".ui.account.AddTokenActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>

Expand All @@ -54,12 +54,12 @@
android:theme="@style/Theme.Walletapp"/>


<activity android:name=".CreatePinActivity"
<activity android:name=".ui.onboarding.CreatePinActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>


<activity android:name=".WalletActivity"
<activity android:name=".ui.account.WalletActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>

Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit b72930f

Please sign in to comment.