Skip to content

Commit

Permalink
fix: rebrand changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AniketSindhu committed Jul 10, 2023
1 parent 4e93312 commit c2e73e7
Show file tree
Hide file tree
Showing 11 changed files with 568 additions and 210 deletions.
359 changes: 358 additions & 1 deletion assets/onboarding_page/lottie/splash2.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -243,17 +243,16 @@ class OpreationRequestView extends GetView<OpreationRequestController> {
children: [
Expanded(
child: SolidButton(
borderColor:
const Color(
0xFFE8A2B9),
borderColor: ColorConst
.Secondary,
title: "Cancel",
primaryColor:
Colors.transparent,
onPressed: () {
controller.reject();
},
textColor: const Color(
0xFFE8A2B9),
textColor: ColorConst
.Secondary,
)),
0.04.hspace,
Expanded(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,13 @@ class PairRequestView extends GetView<PairRequestController> {
children: [
Expanded(
child: SolidButton(
borderColor: const Color(0xFFE8A2B9),
borderColor: ColorConst.Secondary,
title: "Cancel",
primaryColor: Colors.transparent,
onPressed: () {
controller.reject();
},
textColor: const Color(0xFFE8A2B9),
textColor: ColorConst.Secondary,
),
),
0.04.hspace,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,13 @@ class PayloadRequestView extends GetView<PayloadRequestController> {
children: [
Expanded(
child: SolidButton(
borderColor: const Color(0xFFE8A2B9),
borderColor: ColorConst.Secondary,
title: "Cancel",
primaryColor: Colors.transparent,
onPressed: () {
controller.reject();
},
textColor: const Color(0xFFE8A2B9),
textColor: ColorConst.Secondary,
)),
0.04.hspace,
Expanded(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ class CreateWalletPageView extends GetView<CreateWalletPageController> {
Get.toNamed(Routes.IMPORT_WALLET_PAGE);
},
title: "I already have a wallet",
borderColor: ColorConst.Secondary.shade70,
textColor: ColorConst.Secondary.shade70,
borderColor: ColorConst.Secondary,
textColor: ColorConst.Secondary,
);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ class _AccountSwitchState extends State<AccountSwitch> {
child: SolidButton(
primaryColor: Colors.black,
// borderColor: ColorConst.Primary.shade60,
borderColor: const Color(0xFFF07BC7),
borderColor: ColorConst.Secondary,
borderWidth: 1.5,
onPressed: () {
Get.back();
Expand All @@ -256,9 +256,7 @@ class _AccountSwitchState extends State<AccountSwitch> {
'Cancel'.tr,
style: bodyMedium.copyWith(
fontWeight: FontWeight.w600,
color: const Color(
0xFFF07BC7,
),
color: ColorConst.Secondary,
),
),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ class _AddAccountSheetState extends State<AddAccountSheet> {
SolidButton(
width: 1.width - 64.arP,
borderWidth: 1.5,
borderColor: ColorConst.Secondary.shade70,
textColor: ColorConst.Secondary.shade70,
borderColor: ColorConst.Secondary,
textColor: ColorConst.Secondary,
primaryColor: Colors.transparent,
onPressed: () {
Get.back();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ class BuyNftSuccessSheet extends StatelessWidget {
),
0.03.vspace,
SolidButton(
borderColor: ColorConst.Neutral.shade90,
borderColor: ColorConst.Secondary,
active: true,
borderWidth: 1,
textColor: ColorConst.Neutral.shade90,
textColor: ColorConst.Secondary,
primaryColor: Colors.transparent,
onPressed: () {
Get.back();
Expand Down
Loading

0 comments on commit c2e73e7

Please sign in to comment.