Feat: Passt App für kleinere Bildschirme an
This commit is contained in:
@@ -20,27 +20,29 @@ class Dashboard extends StatelessWidget {
|
||||
body: SafeArea(
|
||||
child: Padding(
|
||||
padding: EdgeInsets.symmetric(horizontal: 16, vertical: 24),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
CurrentBalance(),
|
||||
SizedBox(height: 32),
|
||||
child: SingleChildScrollView(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
CurrentBalance(),
|
||||
SizedBox(height: 32),
|
||||
|
||||
Text(
|
||||
'Kontostand pro Monat',
|
||||
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
|
||||
),
|
||||
SizedBox(height: 12),
|
||||
MonthlyBalanceChart(),
|
||||
Text(
|
||||
'Kontostand pro Monat',
|
||||
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
|
||||
),
|
||||
SizedBox(height: 12),
|
||||
MonthlyBalanceChart(),
|
||||
|
||||
SizedBox(height: 32),
|
||||
Text(
|
||||
'Letzte Transaktionen',
|
||||
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
|
||||
),
|
||||
SizedBox(height: 12),
|
||||
RecentTransactionsList(),
|
||||
],
|
||||
SizedBox(height: 32),
|
||||
Text(
|
||||
'Letzte Transaktionen',
|
||||
style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
|
||||
),
|
||||
SizedBox(height: 12),
|
||||
RecentTransactionsList(),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user