mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
65 lines
2.0 KiB
Dart
65 lines
2.0 KiB
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_i18n/widgets/I18nText.dart';
|
||
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
||
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_section.dart';
|
||
|
|
||
|
final _settingsViewModel = SettingsViewModel();
|
||
|
|
||
|
class SExportSection extends StatelessWidget {
|
||
|
const SExportSection({super.key});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return SettingsSection(
|
||
|
title: 'settingsView.exportSectionTitle',
|
||
|
children: <Widget>[
|
||
|
ListTile(
|
||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||
|
title: I18nText(
|
||
|
'settingsView.exportPatchesLabel',
|
||
|
child: const Text(
|
||
|
'',
|
||
|
style: TextStyle(
|
||
|
fontSize: 20,
|
||
|
fontWeight: FontWeight.w500,
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
subtitle: I18nText('settingsView.exportPatchesHint'),
|
||
|
onTap: () => _settingsViewModel.exportPatches(),
|
||
|
),
|
||
|
ListTile(
|
||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||
|
title: I18nText(
|
||
|
'settingsView.importPatchesLabel',
|
||
|
child: const Text(
|
||
|
'',
|
||
|
style: TextStyle(
|
||
|
fontSize: 20,
|
||
|
fontWeight: FontWeight.w500,
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
subtitle: I18nText('settingsView.importPatchesHint'),
|
||
|
onTap: () => _settingsViewModel.importPatches(),
|
||
|
),
|
||
|
ListTile(
|
||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||
|
title: I18nText(
|
||
|
'settingsView.resetStoredPatchesLabel',
|
||
|
child: const Text(
|
||
|
'',
|
||
|
style: TextStyle(
|
||
|
fontSize: 20,
|
||
|
fontWeight: FontWeight.w500,
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
subtitle: I18nText('settingsView.resetStoredPatchesHint'),
|
||
|
onTap: () => _settingsViewModel.resetSelectedPatches(),
|
||
|
),
|
||
|
],
|
||
|
);
|
||
|
}
|
||
|
}
|