Removed double information

This commit is contained in:
2025-07-09 15:21:46 +02:00
parent 7fa95f4bca
commit 2d34ebf35b

View File

@@ -141,22 +141,8 @@ class _SettingsViewState extends State<SettingsView> {
bottom: 30,
left: 0,
right: 0,
child: Column(
children: [
Center(
child: Text(AppLocalizations.of(context).error_found),
),
Padding(
padding: const EdgeInsets.fromLTRB(0, 0, 0, 30),
child: Center(
child: CupertinoButton(
onPressed: () => launchUrl(Uri.parse(
'https://github.com/flixcoo/Cabo-Counter/issues')),
child: Text(AppLocalizations.of(context).create_issue),
),
),
),
FutureBuilder<PackageInfo>(
child: FutureBuilder<PackageInfo>(
future: _getPackageInfo(),
builder: (context, snapshot) {
if (snapshot.hasData) {
@@ -176,9 +162,7 @@ class _SettingsViewState extends State<SettingsView> {
textAlign: TextAlign.center,
);
},
)
],
)),
))),
],
)),
);