|
|
@ -72,7 +72,7 @@ class _InfoViewState extends State<InfoView>
|
|
|
|
delegate: SliverChildListDelegate([
|
|
|
|
delegate: SliverChildListDelegate([
|
|
|
|
ListTile(
|
|
|
|
ListTile(
|
|
|
|
title: Text('Package Info'),
|
|
|
|
title: Text('Package Info'),
|
|
|
|
tileColor: Theme.of(context).accentColor.withOpacity(0.2),
|
|
|
|
tileColor: Colors.blue.withOpacity(0.2),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
InfoTile(title: 'appName', subTitle: packageInfo!.appName),
|
|
|
|
InfoTile(title: 'appName', subTitle: packageInfo!.appName),
|
|
|
|
InfoTile(
|
|
|
|
InfoTile(
|
|
|
@ -82,7 +82,7 @@ class _InfoViewState extends State<InfoView>
|
|
|
|
InfoTile(title: 'version', subTitle: packageInfo!.version),
|
|
|
|
InfoTile(title: 'version', subTitle: packageInfo!.version),
|
|
|
|
ListTile(
|
|
|
|
ListTile(
|
|
|
|
title: Text('Device Info'),
|
|
|
|
title: Text('Device Info'),
|
|
|
|
tileColor: Theme.of(context).accentColor.withOpacity(0.1),
|
|
|
|
tileColor: Colors.blue.withOpacity(0.1),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
])),
|
|
|
|
])),
|
|
|
|
_buildView(),
|
|
|
|
_buildView(),
|
|
|
|