refactor: split into smaller widgets.

This commit is contained in:
Aunali321
2022-08-01 17:00:06 +05:30
parent 6bf7411074
commit 0e07a0da68
5 changed files with 115 additions and 105 deletions

View File

@@ -1,12 +1,10 @@
import 'package:flutter/material.dart';
import 'package:flutter/src/foundation/key.dart';
import 'package:flutter/src/widgets/framework.dart';
class PatcherScreen extends StatelessWidget {
const PatcherScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold();
return const Scaffold();
}
}