mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-24 03:26:38 +00:00
09c942564e
* fix: SectionStandardList using BuildContext as param * refactor: deprecated backgroundColor -> colorScheme.background * refactor: themeBase and current themes * refactor: accentTextTheme.titleLarge.color -> dialogTheme.backgroundColor * refactor: gradient background * refactor: text themes using the same color as primaryColor * refactor: accentTextTheme.bodySmall.color -> cardColor * refactor: text themes using same dialogBackgroundColor * refactor: scrollbarTheme * refactor: create SyncIndicatorTheme * refactor: SectionDivider * refactor: base_page improvements and simplify * refactor: collapsible_standart_list improvements * refactor: accentTextTheme.bodyLarge.backgroundColor -> KeyboardTheme.keyboardBarColor * refactor: create PinCodeTheme for accentTextTheme.bodyMedium * refactor: create SupportPageTheme for accentTextTheme.displayLarge.backgroundColor and fix cases that use it * refactor: accentTextTheme.displayLarge.color -> disabledColor * refactor: create ExchangePageTheme * refactor: create DashboardPageTheme and use textColor * refactor: create NewWalletTheme for accentTextTheme.displayMedium * refactor: create BalancePageTheme for accentTextTheme.displaySmall.backgroundColor * refactor: create AddressTheme for accentTextTheme.displaySmall.color * refactor: create IndicatorDotTheme * refactor: create CakeMenuTheme * refactor: create FilterTheme * refactor: create WalletListTheme * refactor: accentTextTheme.bodySmall.decorationColor -> InfoTheme.textColor * refactor: accentTextTheme.titleLarge.backgroundColor -> PickerTheme.dividerColor * refactor: primaryTextTheme.bodyLarge.backgroundColor -> AlertTheme.leftButtonTextColor * refactor: primaryTextTheme.displayLarge.backgroundColor -> OrderTheme.iconColor * refactor: create SendPageTheme * fix: missing migrated styles * refactor: primaryTextTheme.labelSmall.decorationColor -> PlaceholderTheme.color * refactor: create TransactionTradeTheme * refactor: create CakeTextTheme * refactor: create AccountListTheme * refactor: create ReceivePageTheme * refactor: create QRCodeTheme * refactor: move remaining items to CakeTextTheme and some missing fixes * feat(display_settings): add new theme selector * feat: additional themes * fix: conflict error * fix(lag): move colorScheme initialization to constructor * feat: add backdropColor to alert and picker backdrop filters * fix: merge fixes * fix: send template page missing new colors * fix: anonpay pages title and icon colors * fix: merge fixes * fix: unspent coins page * fix: also fix exchange template * fix: missing checkbox * fix: fixes for high contrast theme * Merge branch 'main' into CW-396-additional-themes * fix: merge fixes * fix: .gitignore and rm added files * Fix review comments --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
130 lines
No EOL
6 KiB
Dart
130 lines
No EOL
6 KiB
Dart
import 'package:cake_wallet/palette.dart';
|
|
import 'package:cake_wallet/src/screens/yat/widgets/first_introduction.dart';
|
|
import 'package:cake_wallet/src/screens/yat/widgets/second_introduction.dart';
|
|
import 'package:cake_wallet/src/screens/yat/widgets/third_introduction.dart';
|
|
import 'package:cake_wallet/src/screens/yat/widgets/yat_close_button.dart';
|
|
import 'package:cake_wallet/src/widgets/alert_background.dart';
|
|
import 'package:cake_wallet/src/widgets/primary_button.dart';
|
|
import 'package:cake_wallet/store/yat/yat_store.dart';
|
|
import 'package:cake_wallet/themes/extensions/sync_indicator_theme.dart';
|
|
import 'package:cake_wallet/view_model/dashboard/dashboard_view_model.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:animate_do/animate_do.dart';
|
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
|
import 'package:url_launcher/url_launcher.dart';
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cake_wallet/themes/extensions/dashboard_page_theme.dart';
|
|
import 'package:cake_wallet/themes/extensions/balance_page_theme.dart';
|
|
|
|
class YatEmojiId extends StatelessWidget {
|
|
YatEmojiId(this.emojiId);
|
|
static const durationInMilliseconds = 250;
|
|
|
|
final String emojiId;
|
|
final image = Image.asset('assets/images/emoji_popup.png');
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final screenWidth = MediaQuery.of(context).size.width;
|
|
|
|
return Stack(
|
|
clipBehavior: Clip.none,
|
|
alignment: Alignment.bottomCenter,
|
|
children: [
|
|
AlertBackground(child: Container()),
|
|
SlideInUp(
|
|
from: 420,
|
|
duration: Duration(milliseconds: durationInMilliseconds),
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.only(
|
|
topLeft: Radius.circular(24),
|
|
topRight: Radius.circular(24)),
|
|
child: Container(
|
|
height: 420,
|
|
color:
|
|
Theme.of(context).extension<SyncIndicatorTheme>()!.syncedBackgroundColor,
|
|
padding: EdgeInsets.fromLTRB(24, 15, 24, 24),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Column(
|
|
children: [
|
|
Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
children: [
|
|
YatCloseButton(onClose: () => Navigator.of(context).pop())
|
|
]
|
|
),
|
|
Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Container(
|
|
padding: EdgeInsets.fromLTRB(10, 5, 10, 5),
|
|
decoration: BoxDecoration(
|
|
color: Colors.white,
|
|
border: Border.all(color: Colors.white),
|
|
borderRadius: BorderRadius.all(Radius.circular(50))
|
|
),
|
|
child:
|
|
Text(
|
|
emojiId,
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
fontSize: 46,
|
|
decoration: TextDecoration.none,
|
|
)
|
|
))
|
|
]
|
|
)
|
|
]
|
|
),
|
|
Container(
|
|
padding: EdgeInsets.only(left: 6, right: 6),
|
|
child: Column(
|
|
children: [
|
|
Text(
|
|
"That's one nice Yat!",
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
fontSize: 32,
|
|
fontWeight: FontWeight.bold,
|
|
fontFamily: 'Lato',
|
|
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
|
decoration: TextDecoration.none,
|
|
)
|
|
),
|
|
Padding(
|
|
padding: EdgeInsets.only(top: 20),
|
|
child: Text(
|
|
'You can manage your Yat or purchase additional Yats in your account settings',
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
fontSize: 18,
|
|
fontWeight: FontWeight.normal,
|
|
fontFamily: 'Lato',
|
|
color: Theme.of(context).extension<BalancePageTheme>()!.labelTextColor,
|
|
decoration: TextDecoration.none,
|
|
)
|
|
)
|
|
)
|
|
]
|
|
)
|
|
),
|
|
PrimaryButton(
|
|
text: 'Got it',
|
|
textColor: Colors.white,
|
|
color: Palette.protectiveBlue,
|
|
onPressed: () => Navigator.of(context).pop()
|
|
)
|
|
],
|
|
)
|
|
)
|
|
),
|
|
)
|
|
],
|
|
);
|
|
}
|
|
} |