refactor: removed boilerplate code.

This commit is contained in:
Aunali321
2022-07-31 00:50:36 +05:30
parent 9884cf0ea9
commit fcc268c9da
2 changed files with 20 additions and 97 deletions

View File

@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
class HomeScreen extends StatelessWidget {
const HomeScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('ReVanced Manager'),
),
body: const Center(
child: Text('Home Screen'),
),
);
}
}