mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 15:00:40 +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) {
|
||||
return GestureDetector(
|
||||
onTap: () {
|
||||
Navigator.of(context).pushNamed('proFeatures');
|
||||
Navigator.of(context).pushNamed("lightmeterPro");
|
||||
},
|
||||
child: ReadingValueContainer(
|
||||
color: Theme.of(context).colorScheme.secondary,
|
||||
|
|
|
@ -15,7 +15,7 @@ class BuyProListTile extends StatelessWidget {
|
|||
title: Text(S.of(context).getPro),
|
||||
onTap: !isPending
|
||||
? () {
|
||||
Navigator.of(context).pushNamed('proFeatures');
|
||||
Navigator.of(context).pushNamed("lightmeterPro");
|
||||
}
|
||||
: null,
|
||||
trailing: isPending
|
||||
|
|
Loading…
Reference in a new issue