mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
82 lines
3.1 KiB
Dart
82 lines
3.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
|
import 'package:revanced_manager/constants.dart';
|
|
import 'package:revanced_manager/theme.dart';
|
|
import 'package:revanced_manager/utils/about_info.dart';
|
|
import 'package:flutter/services.dart';
|
|
|
|
class AboutWidget extends StatefulWidget {
|
|
const AboutWidget({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<AboutWidget> createState() => _AboutWidgetState();
|
|
}
|
|
|
|
class _AboutWidgetState extends State<AboutWidget> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
I18nText(
|
|
'settingsView.aboutLabel',
|
|
child: Text('', style: kSettingItemTextStyle),
|
|
),
|
|
const SizedBox(height: 4),
|
|
FutureBuilder<Map<String, dynamic>>(
|
|
future: AboutInfo.getInfo(),
|
|
builder: (context, snapshot) {
|
|
if (snapshot.hasData) {
|
|
return GestureDetector(
|
|
onLongPress: () {
|
|
Clipboard.setData(
|
|
ClipboardData(
|
|
text: 'Version: ${snapshot.data!['version']}\n'
|
|
'Build: ${snapshot.data!['buildNumber']}\n'
|
|
'Model: ${snapshot.data!['model']}\n'
|
|
'Android Version: ${snapshot.data!['androidVersion']}\n'
|
|
'Arch: ${snapshot.data!['arch']}\n',
|
|
),
|
|
);
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
SnackBar(
|
|
content: Text(
|
|
'Copied to clipboard',
|
|
style: TextStyle(
|
|
color: isDark ? Colors.white : Colors.grey[300],
|
|
),
|
|
),
|
|
backgroundColor: Theme.of(context).colorScheme.tertiary,
|
|
),
|
|
);
|
|
},
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
Text('Version: ${snapshot.data!['version']}',
|
|
style: kSettingItemSubtitleTextStyle),
|
|
Text('Build: ${snapshot.data!['buildNumber']}',
|
|
style: kSettingItemSubtitleTextStyle),
|
|
Text('Model: ${snapshot.data!['model']}',
|
|
style: kSettingItemSubtitleTextStyle),
|
|
Text(
|
|
'Android Version: ${snapshot.data!['androidVersion']}',
|
|
style: kSettingItemSubtitleTextStyle),
|
|
Text('Arch: ${snapshot.data!['arch']}',
|
|
style: kSettingItemSubtitleTextStyle),
|
|
],
|
|
),
|
|
);
|
|
} else {
|
|
return Container();
|
|
}
|
|
},
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|