mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-05-25 17:42:12 +00:00
141 lines
4.2 KiB
Dart
141 lines
4.2 KiB
Dart
import 'dart:async';
|
|
import 'dart:io';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:twonly/locator.dart';
|
|
import 'package:twonly/src/providers/connection.provider.dart';
|
|
import 'package:twonly/src/utils/misc.dart';
|
|
import 'package:url_launcher/url_launcher.dart';
|
|
|
|
class AppOutdatedComp extends StatefulWidget {
|
|
const AppOutdatedComp({super.key});
|
|
|
|
@override
|
|
State<AppOutdatedComp> createState() => _AppOutdatedCompState();
|
|
}
|
|
|
|
class _AppOutdatedCompState extends State<AppOutdatedComp> {
|
|
bool appIsOutdated = false;
|
|
bool newDeviceRegistered = false;
|
|
|
|
late StreamSubscription<void> _subOutdated;
|
|
late StreamSubscription<void> _subNewDevice;
|
|
|
|
@override
|
|
void dispose() {
|
|
_subOutdated.cancel();
|
|
_subNewDevice.cancel();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_subOutdated = apiService.onAppOutdated.listen((_) async {
|
|
if (mounted) {
|
|
await context.read<CustomChangeProvider>().updateConnectionState(false);
|
|
setState(() {
|
|
appIsOutdated = true;
|
|
});
|
|
}
|
|
});
|
|
|
|
_subNewDevice = apiService.onNewDeviceRegistered.listen((_) async {
|
|
if (mounted) {
|
|
await context.read<CustomChangeProvider>().updateConnectionState(false);
|
|
setState(() {
|
|
newDeviceRegistered = true;
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (newDeviceRegistered) {
|
|
return Positioned(
|
|
top: 60,
|
|
left: 30,
|
|
right: 30,
|
|
child: SafeArea(
|
|
child: Container(
|
|
padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 8),
|
|
decoration: BoxDecoration(
|
|
color: Colors.red.withAlpha(100),
|
|
borderRadius: BorderRadius.circular(10),
|
|
),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
|
children: [
|
|
Text(
|
|
context.lang.newDeviceRegistered,
|
|
textAlign: TextAlign.center,
|
|
softWrap: true,
|
|
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
|
color: Colors.white,
|
|
fontSize: 16,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
if (appIsOutdated) {
|
|
return Positioned(
|
|
top: 60,
|
|
left: 30,
|
|
right: 30,
|
|
child: SafeArea(
|
|
child: Container(
|
|
padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 8),
|
|
decoration: BoxDecoration(
|
|
color: Colors.red,
|
|
borderRadius: BorderRadius.circular(10),
|
|
),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
|
children: [
|
|
Text(
|
|
context.lang.appOutdated,
|
|
textAlign: TextAlign.center,
|
|
softWrap: true,
|
|
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
|
color: Colors.white,
|
|
fontSize: 16,
|
|
),
|
|
),
|
|
if (Platform.isAndroid) const SizedBox(height: 5),
|
|
if (Platform.isAndroid)
|
|
ElevatedButton(
|
|
onPressed: () async {
|
|
await launchUrl(
|
|
Uri.parse(
|
|
'https://play.google.com/store/apps/details?id=eu.twonly',
|
|
),
|
|
);
|
|
},
|
|
style: ElevatedButton.styleFrom(
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(10),
|
|
),
|
|
),
|
|
child: Text(
|
|
context.lang.appOutdatedBtn,
|
|
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
|
color: Colors.white,
|
|
fontSize: 16,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
return Container();
|
|
}
|
|
}
|