This commit is contained in:
Vadim 2024-07-23 22:37:33 +02:00
parent e5a7305218
commit b991f7b7c3
2 changed files with 2 additions and 2 deletions

View file

@ -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,

View file

@ -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