mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-11 08:56:53 +00:00
merge conflict fixes
This commit is contained in:
parent
2d8923a1e3
commit
f948b3dea6
4 changed files with 7 additions and 7 deletions
lib/src/screens
dashboard/widgets
nano_accounts
restore
settings
|
@ -214,13 +214,14 @@ class AddressPage extends BasePage {
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
fontWeight: FontWeight.w500,
|
fontWeight: FontWeight.w500,
|
||||||
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor),
|
color: Theme.of(context)
|
||||||
|
.extension<DashboardPageTheme>()!
|
||||||
|
.textColor),
|
||||||
)),
|
)),
|
||||||
Icon(
|
Icon(
|
||||||
Icons.arrow_forward_ios,
|
Icons.arrow_forward_ios,
|
||||||
size: 14,
|
size: 14,
|
||||||
color:
|
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
||||||
Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
@ -30,7 +30,7 @@ class NanoAccountListPage extends StatelessWidget {
|
||||||
child: ListView.separated(
|
child: ListView.separated(
|
||||||
padding: EdgeInsets.zero,
|
padding: EdgeInsets.zero,
|
||||||
controller: controller,
|
controller: controller,
|
||||||
separatorBuilder: (context, index) => const SectionDivider(),
|
separatorBuilder: (context, index) => const VerticalSectionDivider(),
|
||||||
itemCount: accounts.length,
|
itemCount: accounts.length,
|
||||||
itemBuilder: (context, index) {
|
itemBuilder: (context, index) {
|
||||||
final account = accounts[index];
|
final account = accounts[index];
|
||||||
|
|
|
@ -19,7 +19,7 @@ class WalletRestoreChooseDerivationPage extends BasePage {
|
||||||
fontSize: 18.0,
|
fontSize: 18.0,
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
fontFamily: 'Lato',
|
fontFamily: 'Lato',
|
||||||
color: titleColor ?? Theme.of(context).primaryTextTheme!.titleLarge!.color!),
|
color: titleColor(context)),
|
||||||
));
|
));
|
||||||
|
|
||||||
final WalletRestoreChooseDerivationViewModel walletRestoreChooseDerivationViewModel;
|
final WalletRestoreChooseDerivationViewModel walletRestoreChooseDerivationViewModel;
|
||||||
|
|
|
@ -40,12 +40,11 @@ class ManagePowNodesPage extends BasePage {
|
||||||
return Flexible(
|
return Flexible(
|
||||||
child: SectionStandardList(
|
child: SectionStandardList(
|
||||||
sectionCount: 1,
|
sectionCount: 1,
|
||||||
context: context,
|
|
||||||
dividerPadding: EdgeInsets.symmetric(horizontal: 24),
|
dividerPadding: EdgeInsets.symmetric(horizontal: 24),
|
||||||
itemCounter: (int sectionIndex) {
|
itemCounter: (int sectionIndex) {
|
||||||
return nodeListViewModel.nodes.length;
|
return nodeListViewModel.nodes.length;
|
||||||
},
|
},
|
||||||
itemBuilder: (_, sectionIndex, index) {
|
itemBuilder: (_, index) {
|
||||||
final node = nodeListViewModel.nodes[index];
|
final node = nodeListViewModel.nodes[index];
|
||||||
final isSelected = node.keyIndex == nodeListViewModel.currentNode.keyIndex;
|
final isSelected = node.keyIndex == nodeListViewModel.currentNode.keyIndex;
|
||||||
final nodeListRow = PowNodeListRow(
|
final nodeListRow = PowNodeListRow(
|
||||||
|
|
Loading…
Reference in a new issue