1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2026-08-25 01:05:36 +00:00

refactor: split app wrapper from focused example code (pilot)

Apply a consistent structure to 5 example apps (simple_material_app,
stateful_widget, dropdown_button, using_gradient, using_tabs):

- lib/main.dart now contains only the app bootstrap: runApp + a const
  MyApp widget wrapping the app in a MaterialApp.
- lib/example.dart holds the full screen (Scaffold, AppBar, and the
  focused code that demonstrates the example feature), marked with a
  '// Example:' banner comment.

This makes it easy to pinpoint the code that teaches each concept while
keeping the wrapping/chrome code uniform and minimal. Review this pilot
before rolling the pattern out to the remaining apps.
This commit is contained in:
Nishant Srivastava
2026-08-18 00:24:22 +02:00
parent 2cf50c0b6b
commit e143b4c3a2
10 changed files with 304 additions and 225 deletions

View File

@@ -0,0 +1,70 @@
import 'package:flutter/material.dart';
// Example: the focused code for this app.
// A DropdownButton that lets the user pick a fruit from a list.
class Example extends StatefulWidget {
const Example({super.key});
@override
State<Example> createState() => _ExampleState();
}
class _ExampleState extends State<Example> {
final List<String> _fruits = [
"Apple",
"Banana",
"Pineapple",
"Mango",
"Grapes"
];
late List<DropdownMenuItem<String>> _dropDownMenuItems;
late String _selectedFruit;
@override
void initState() {
_dropDownMenuItems = buildAndGetDropDownMenuItems(_fruits);
_selectedFruit = _dropDownMenuItems[0].value!;
super.initState();
}
List<DropdownMenuItem<String>> buildAndGetDropDownMenuItems(
List<String> fruits) {
List<DropdownMenuItem<String>> items = [];
for (String fruit in fruits) {
items.add(DropdownMenuItem(value: fruit, child: Text(fruit)));
}
return items;
}
void changedDropDownItem(String? selectedFruit) {
setState(() {
_selectedFruit = selectedFruit!;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("DropDown Button Example"),
),
body: Container(
child: Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text("Please choose a fruit: "),
DropdownButton<String>(
value: _selectedFruit,
items: _dropDownMenuItems,
onChanged: changedDropDownItem,
)
],
),
),
),
);
}
}

View File

@@ -1,68 +1,20 @@
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
import 'example.dart';
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<StatefulWidget> createState() {
return MyAppState();
}
void main() {
runApp(const MyApp());
}
class MyAppState extends State<MyApp> {
final List<String> _fruits = ["Apple", "Banana", "Pineapple", "Mango", "Grapes"];
late List<DropdownMenuItem<String>> _dropDownMenuItems;
late String _selectedFruit;
@override
void initState() {
_dropDownMenuItems = buildAndGetDropDownMenuItems(_fruits);
_selectedFruit = _dropDownMenuItems[0].value!;
super.initState();
}
List<DropdownMenuItem<String>> buildAndGetDropDownMenuItems(
List<String> fruits) {
List<DropdownMenuItem<String>> items = [];
for (String fruit in fruits) {
items.add(DropdownMenuItem(value: fruit, child: Text(fruit)));
}
return items;
}
void changedDropDownItem(String? selectedFruit) {
setState(() {
_selectedFruit = selectedFruit!;
});
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
title: Text("DropDown Button Example"),
),
body: Container(
child: Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text("Please choose a fruit: "),
DropdownButton<String>(
value: _selectedFruit,
items: _dropDownMenuItems,
onChanged: changedDropDownItem,
)
],
)),
),
),
title: "DropDown Button Example",
home: const Example(),
);
}
}