mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
* 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>
74 lines
2.2 KiB
Dart
74 lines
2.2 KiB
Dart
import 'package:cake_wallet/entities/qr_view_data.dart';
|
|
import 'package:cake_wallet/src/widgets/gradient_background.dart';
|
|
import 'package:cake_wallet/src/screens/receive/widgets/qr_image.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:cake_wallet/src/screens/base_page.dart';
|
|
import 'package:cake_wallet/themes/extensions/dashboard_page_theme.dart';
|
|
|
|
class FullscreenQRPage extends BasePage {
|
|
FullscreenQRPage({required this.qrViewData});
|
|
|
|
final QrViewData qrViewData;
|
|
|
|
@override
|
|
bool get gradientBackground => true;
|
|
|
|
@override
|
|
bool get resizeToAvoidBottomInset => false;
|
|
|
|
@override
|
|
Widget leading(BuildContext context) {
|
|
final _backButton = Icon(
|
|
Icons.arrow_back_ios,
|
|
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
|
size: 16,
|
|
);
|
|
|
|
return SizedBox(
|
|
height: 37,
|
|
width: 37,
|
|
child: ButtonTheme(
|
|
minWidth: double.minPositive,
|
|
child: TextButton(
|
|
// FIX-ME: Style
|
|
//highlightColor: Colors.transparent,
|
|
//splashColor: Colors.transparent,
|
|
//padding: EdgeInsets.all(0),
|
|
onPressed: () => onClose(context),
|
|
child: _backButton,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget Function(BuildContext, Widget) get rootWrapper =>
|
|
(BuildContext context, Widget scaffold) =>
|
|
GradientBackground(scaffold: scaffold);
|
|
|
|
@override
|
|
Widget body(BuildContext context) {
|
|
return Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: MediaQuery.of(context).size.width * 0.05),
|
|
child: Hero(
|
|
tag: Key(qrViewData.heroTag ?? qrViewData.data),
|
|
child: Center(
|
|
child: AspectRatio(
|
|
aspectRatio: 1.0,
|
|
child: Container(
|
|
padding: EdgeInsets.all(10),
|
|
decoration: BoxDecoration(
|
|
border: Border.all(
|
|
width: 3,
|
|
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor)),
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
border: Border.all(width: 3, color: Colors.white)),
|
|
child: QrImage(data: qrViewData.data, version: qrViewData.version)),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|