mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-13 02:14:31 +01:00
55 lines
1.7 KiB
Dart
55 lines
1.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:revanced_manager/ui/widgets/app_selector_card.dart';
|
|
import 'package:revanced_manager/ui/widgets/patch_selector_card.dart';
|
|
import 'package:stacked/stacked.dart';
|
|
|
|
import 'patcher_viewmodel.dart';
|
|
|
|
class PatcherView extends StatelessWidget {
|
|
const PatcherView({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ViewModelBuilder.reactive(
|
|
builder: (context, PatcherViewModel model, child) => Scaffold(
|
|
floatingActionButton: FloatingActionButton(
|
|
onPressed: () {},
|
|
child: const Icon(
|
|
Icons.build,
|
|
color: Colors.white,
|
|
),
|
|
),
|
|
body: SafeArea(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(12.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const SizedBox(height: 12),
|
|
I18nText(
|
|
'patcherView.widgetTitle',
|
|
child: Text(
|
|
'',
|
|
style: GoogleFonts.inter(
|
|
fontSize: 28,
|
|
fontWeight: FontWeight.w500,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 23),
|
|
AppSelectorCard(
|
|
onPressed: model.navigateToAppSelector,
|
|
),
|
|
const SizedBox(height: 16),
|
|
const PatchSelectorCard(),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
viewModelBuilder: () => PatcherViewModel(),
|
|
);
|
|
}
|
|
}
|