Added version number in about view
This commit is contained in:
@@ -1,12 +1,13 @@
|
|||||||
import 'package:cabo_counter/core/constants.dart';
|
import 'package:cabo_counter/core/constants.dart';
|
||||||
import 'package:cabo_counter/l10n/generated/app_localizations.dart';
|
import 'package:cabo_counter/l10n/generated/app_localizations.dart';
|
||||||
|
import 'package:cabo_counter/services/version_service.dart';
|
||||||
import 'package:flutter/cupertino.dart';
|
import 'package:flutter/cupertino.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
class InformationView extends StatelessWidget {
|
class AboutView extends StatelessWidget {
|
||||||
const InformationView({super.key});
|
const AboutView({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
@@ -29,9 +30,13 @@ class InformationView extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Text(
|
||||||
|
'${AppLocalizations.of(context).app_version} ${VersionService.getVersionWithBuild()}',
|
||||||
|
style: TextStyle(fontSize: 15, color: Colors.grey[300]),
|
||||||
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding:
|
padding:
|
||||||
const EdgeInsets.symmetric(horizontal: 20, vertical: 30),
|
const EdgeInsets.symmetric(horizontal: 20, vertical: 15),
|
||||||
child: SizedBox(
|
child: SizedBox(
|
||||||
height: 200,
|
height: 200,
|
||||||
child: Image.asset('assets/cabo_counter-logo_rounded.png'),
|
child: Image.asset('assets/cabo_counter-logo_rounded.png'),
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import 'package:cabo_counter/core/custom_theme.dart';
|
import 'package:cabo_counter/core/custom_theme.dart';
|
||||||
import 'package:cabo_counter/l10n/generated/app_localizations.dart';
|
import 'package:cabo_counter/l10n/generated/app_localizations.dart';
|
||||||
import 'package:cabo_counter/presentation/views/information_view.dart';
|
import 'package:cabo_counter/presentation/views/about_view.dart';
|
||||||
import 'package:cabo_counter/presentation/views/main_menu_view.dart';
|
import 'package:cabo_counter/presentation/views/main_menu_view.dart';
|
||||||
import 'package:flutter/cupertino.dart';
|
import 'package:flutter/cupertino.dart';
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ class _TabViewState extends State<TabView> {
|
|||||||
if (index == 0) {
|
if (index == 0) {
|
||||||
return const MainMenuView();
|
return const MainMenuView();
|
||||||
} else {
|
} else {
|
||||||
return const InformationView();
|
return const AboutView();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ name: cabo_counter
|
|||||||
description: "Mobile app for the card game Cabo"
|
description: "Mobile app for the card game Cabo"
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 0.4.0+456
|
version: 0.4.0+459
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.5.4
|
sdk: ^3.5.4
|
||||||
|
|||||||
Reference in New Issue
Block a user