Web approach - basic look and feel done
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
import 'package:lucide_icons/lucide_icons.dart';
|
||||
import 'package:lucide_icons_flutter/lucide_icons.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
import '../../transactions/providers/providers.dart';
|
||||
import '../../transactions/data/models.dart';
|
||||
import '../../transactions/data/repository.dart';
|
||||
import 'wallet_ledger_screen.dart';
|
||||
import '../../../core/widgets/responsive_layout.dart';
|
||||
|
||||
class AccountsScreen extends ConsumerStatefulWidget {
|
||||
final String? initialFilterNature;
|
||||
@@ -449,9 +450,11 @@ class _AccountsScreenState extends ConsumerState<AccountsScreen> {
|
||||
final walletsState = ref.watch(walletProvider);
|
||||
|
||||
return Scaffold(
|
||||
body: SafeArea(
|
||||
bottom: false,
|
||||
child: Column(
|
||||
body: MaxContentWidth(
|
||||
maxWidth: 1200,
|
||||
child: SafeArea(
|
||||
bottom: false,
|
||||
child: Column(
|
||||
children: [
|
||||
Padding(
|
||||
padding: const EdgeInsets.fromLTRB(16, 16, 16, 12),
|
||||
@@ -939,6 +942,7 @@ class _AccountsScreenState extends ConsumerState<AccountsScreen> {
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user