Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
beasy-mobile
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
4
Issues
4
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
G
beasy-mobile
Commits
71609896
Commit
71609896
authored
Sep 06, 2025
by
G
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor: Renamed ButtonNew and InputNew to simple Button and Input effectively…
refactor: Renamed ButtonNew and InputNew to simple Button and Input effectively replacing the old ones.
parent
e40c06c7
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
12 additions
and
12 deletions
+12
-12
Button.tsx
src/components/Button.tsx
+0
-0
Input.tsx
src/components/Input.tsx
+0
-0
LoginForm.tsx
src/features/auth/components/LoginForm.tsx
+2
-2
HomeUserNotLoggedIn.tsx
src/screens/HomeUserNotLoggedIn.tsx
+1
-1
NumberAndOtpForPaymentScreen.tsx
src/screens/NumberAndOtpForPaymentScreen.tsx
+2
-2
PaymentAmountInputScreen.tsx
src/screens/PaymentAmountInputScreen.tsx
+2
-2
PaymentResultScreen.tsx
src/screens/PaymentResultScreen.tsx
+1
-1
TransactionHistoryScreen.tsx
src/screens/TransactionHistoryScreen.tsx
+2
-2
UserProfileScreen.tsx
src/screens/UserProfileScreen.tsx
+1
-1
WaveQrCodePaymentScreen.tsx
src/screens/WaveQrCodePaymentScreen.tsx
+1
-1
No files found.
src/components/Button
New
.tsx
→
src/components/Button.tsx
View file @
71609896
File moved
src/components/Input
New
.tsx
→
src/components/Input.tsx
View file @
71609896
File moved
src/features/auth/components/LoginForm.tsx
View file @
71609896
import
{
asp
as
g
}
from
"@asp/asp"
;
import
*
as
Button
from
"@components/Button
New
"
;
import
*
as
Input
from
"@components/Input
New
"
;
import
*
as
Button
from
"@components/Button"
;
import
*
as
Input
from
"@components/Input"
;
import
*
as
Modal
from
"@components/Modal"
;
import
{
MaterialIcons
}
from
"@expo/vector-icons"
;
import
Feather
from
"@expo/vector-icons/Feather"
;
...
...
src/screens/HomeUserNotLoggedIn.tsx
View file @
71609896
import
{
asp
as
g
}
from
"@asp/asp"
;
import
*
as
Button
from
"@components/Button
New
"
;
import
*
as
Button
from
"@components/Button"
;
import
{
Image
}
from
"expo-image"
;
import
{
Text
,
View
}
from
"react-native"
;
import
type
{
MainStackScreenComponentProps
}
from
"@/navigations/types"
;
...
...
src/screens/NumberAndOtpForPaymentScreen.tsx
View file @
71609896
import
{
asp
as
g
}
from
"@asp/asp"
;
import
{
BarnoinPayBackground
}
from
"@components/BarnoinPayBackground"
;
import
BeasyLogoIcon
from
"@components/BeasyLogoIcon"
;
import
*
as
Button
from
"@components/Button
New
"
;
import
*
as
Input
from
"@components/Input
New
"
;
import
*
as
Button
from
"@components/Button"
;
import
*
as
Input
from
"@components/Input"
;
import
AntDesign
from
"@expo/vector-icons/AntDesign"
;
import
{
LOG
}
from
"@logger"
;
import
{
Text
,
View
}
from
"react-native"
;
...
...
src/screens/PaymentAmountInputScreen.tsx
View file @
71609896
import
{
asp
as
g
}
from
"@asp/asp"
;
import
{
BarnoinPayBackground
}
from
"@components/BarnoinPayBackground"
;
import
BeasyLogoIcon
from
"@components/BeasyLogoIcon"
;
import
*
as
Button
from
"@components/Button
New
"
;
import
*
as
Input
from
"@components/Input
New
"
;
import
*
as
Button
from
"@components/Button"
;
import
*
as
Input
from
"@components/Input"
;
import
*
as
Modal
from
"@components/Modal"
;
import
{
LOG
}
from
"@logger"
;
import
{
useMutation
}
from
"@tanstack/react-query"
;
...
...
src/screens/PaymentResultScreen.tsx
View file @
71609896
import
{
asp
as
g
}
from
"@asp/asp"
;
import
{
BarnoinPayBackground
}
from
"@components/BarnoinPayBackground"
;
import
BeasyLogoIcon
from
"@components/BeasyLogoIcon"
;
import
*
as
Button
from
"@components/Button
New
"
;
import
*
as
Button
from
"@components/Button"
;
import
CheckIcon
from
"@components/icons/CheckIcon"
;
import
{
AntDesign
}
from
"@expo/vector-icons"
;
import
{
LOG
}
from
"@logger"
;
...
...
src/screens/TransactionHistoryScreen.tsx
View file @
71609896
...
...
@@ -3,8 +3,8 @@
import
{
asp
as
g
}
from
"@asp/asp"
;
import
{
BarnoinPayBackground
}
from
"@components/BarnoinPayBackground"
;
import
BeasyLogoIcon
from
"@components/BeasyLogoIcon"
;
import
*
as
Button
from
"@components/Button
New
"
;
import
*
as
Input
from
"@components/Input
New
"
;
import
*
as
Button
from
"@components/Button"
;
import
*
as
Input
from
"@components/Input"
;
import
*
as
Modal
from
"@components/Modal"
;
import
Entypo
from
"@expo/vector-icons/Entypo"
;
import
Ionicons
from
"@expo/vector-icons/Ionicons"
;
...
...
src/screens/UserProfileScreen.tsx
View file @
71609896
import
{
asp
as
g
}
from
"@asp/asp"
;
import
{
BarnoinPayBackground
}
from
"@components/BarnoinPayBackground"
;
import
BeasyLogoIcon
from
"@components/BeasyLogoIcon"
;
import
*
as
Button
from
"@components/Button
New
"
;
import
*
as
Button
from
"@components/Button"
;
import
Ionicons
from
"@expo/vector-icons/Ionicons"
;
import
{
LOG
}
from
"@logger"
;
import
{
Text
,
View
}
from
"react-native"
;
...
...
src/screens/WaveQrCodePaymentScreen.tsx
View file @
71609896
import
{
asp
as
g
}
from
"@asp/asp"
;
import
{
BarnoinPayBackground
}
from
"@components/BarnoinPayBackground"
;
import
BeasyLogoIcon
from
"@components/BeasyLogoIcon"
;
import
*
as
Button
from
"@components/Button
New
"
;
import
*
as
Button
from
"@components/Button"
;
import
*
as
Modal
from
"@components/Modal"
;
import
AntDesign
from
"@expo/vector-icons/AntDesign"
;
import
{
LOG
}
from
"@logger"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment