Add settings page #46
1 changed files with 26 additions and 22 deletions
make about dialog more responsive
commit
4472062740
|
|
@ -172,10 +172,12 @@ class SettingsPage extends ConsumerWidget {
|
||||||
spacing: 12,
|
spacing: 12,
|
||||||
children: [
|
children: [
|
||||||
SvgPicture.asset("assets/icon.svg", width: 64),
|
SvgPicture.asset("assets/icon.svg", width: 64),
|
||||||
Column(
|
Expanded(
|
||||||
|
child: Column(
|
||||||
crossAxisAlignment: .start,
|
crossAxisAlignment: .start,
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Wrap(
|
||||||
|
crossAxisAlignment: .center,
|
||||||
spacing: 4,
|
spacing: 4,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
|
|
@ -189,13 +191,15 @@ class SettingsPage extends ConsumerWidget {
|
||||||
),
|
),
|
||||||
|
|
||||||
Text(
|
Text(
|
||||||
"A simple and user-friendly Matrix client.",
|
"A simple and user-friendly Matrix client",
|
||||||
|
overflow: .ellipsis,
|
||||||
style: Theme.of(
|
style: Theme.of(
|
||||||
context,
|
context,
|
||||||
).textTheme.titleMedium,
|
).textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
M3ECardColumn(
|
M3ECardColumn(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue