make about dialog more responsive
This commit is contained in:
parent
082f4b35f0
commit
4472062740
1 changed files with 26 additions and 22 deletions
|
|
@ -172,29 +172,33 @@ 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(
|
||||||
crossAxisAlignment: .start,
|
child: Column(
|
||||||
children: [
|
crossAxisAlignment: .start,
|
||||||
Row(
|
children: [
|
||||||
spacing: 4,
|
Wrap(
|
||||||
children: [
|
crossAxisAlignment: .center,
|
||||||
Text(
|
spacing: 4,
|
||||||
"Nexus",
|
children: [
|
||||||
style: Theme.of(
|
Text(
|
||||||
context,
|
"Nexus",
|
||||||
).textTheme.headlineMedium,
|
style: Theme.of(
|
||||||
),
|
context,
|
||||||
Text("(${packageInfo.version})"),
|
).textTheme.headlineMedium,
|
||||||
],
|
),
|
||||||
),
|
Text("(${packageInfo.version})"),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
|
||||||
Text(
|
Text(
|
||||||
"A simple and user-friendly Matrix client.",
|
"A simple and user-friendly Matrix client",
|
||||||
style: Theme.of(
|
overflow: .ellipsis,
|
||||||
context,
|
style: Theme.of(
|
||||||
).textTheme.titleMedium,
|
context,
|
||||||
),
|
).textTheme.titleMedium,
|
||||||
],
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue