Skip to content

Commit

Permalink
Improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
WieFel committed Dec 25, 2024
1 parent 2576641 commit 8eb5d01
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,9 @@ void main() {
runApp(const ExampleApp());
}

class ExampleApp extends StatefulWidget {
class ExampleApp extends StatelessWidget {
const ExampleApp({Key? key}) : super(key: key);

@override
_ExampleAppState createState() => _ExampleAppState();
}

class _ExampleAppState extends State<ExampleApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
Expand Down

0 comments on commit 8eb5d01

Please sign in to comment.