mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
typo
This commit is contained in:
parent
e5a7305218
commit
b991f7b7c3
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ class LightmeterProAnimatedDialog extends StatelessWidget {
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return GestureDetector(
|
return GestureDetector(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Navigator.of(context).pushNamed('proFeatures');
|
Navigator.of(context).pushNamed("lightmeterPro");
|
||||||
},
|
},
|
||||||
child: ReadingValueContainer(
|
child: ReadingValueContainer(
|
||||||
color: Theme.of(context).colorScheme.secondary,
|
color: Theme.of(context).colorScheme.secondary,
|
||||||
|
|
|
@ -15,7 +15,7 @@ class BuyProListTile extends StatelessWidget {
|
||||||
title: Text(S.of(context).getPro),
|
title: Text(S.of(context).getPro),
|
||||||
onTap: !isPending
|
onTap: !isPending
|
||||||
? () {
|
? () {
|
||||||
Navigator.of(context).pushNamed('proFeatures');
|
Navigator.of(context).pushNamed("lightmeterPro");
|
||||||
}
|
}
|
||||||
: null,
|
: null,
|
||||||
trailing: isPending
|
trailing: isPending
|
||||||
|
|
Loading…
Reference in a new issue