मुझे लगता है कि आप कुछ विजेट के बच्चों के गुणों में _buildBody का उपयोग करते हैं , इसलिए बच्चों को एक सूची विजेट ( विजेट की सरणी) और _buildBody एक 'सूची गतिशील' देता है ।
बहुत ही सरल तरीके से, आप इसे वापस करने के लिए एक चर का उपयोग कर सकते हैं:
List<Widget> widgets = [
Text('Line 1'),
Text('Line 2'),
Text('Line 3'),
];
Column(
children: widgets
)
उदाहरण ( स्पंदन बनाएँ test1 ; cd test1 ; संपादित करें lib / main.dart ; फ़्लटर रन )
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
List<Widget> widgets = [
Text('Line 1'),
Text('Line 2'),
Text('Line 3'),
];
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text("List of Widgets Example")),
body: Column(
children: widgets
)
)
);
}
}
एक अन्य उदाहरण विजेट ( एक विजेट ) का उपयोग करते हुए विजेट की सूची (arrayOfWidgets) के भीतर । मैं दिखाता हूं कि विजेट को निजीकृत करने और कोड के आकार को कम करने के लिए एक विजेट (MyButton) कैसे निकाला जाता है:
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
List<Widget> arrayOfWidgets = [
Text('My Buttons'),
MyButton('Button 1'),
MyButton('Button 2'),
MyButton('Button 3'),
];
Widget oneWidget(List<Widget> _lw) { return Column(children: _lw); }
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text("Widget with a List of Widget's Example")),
body: oneWidget(arrayOfWidgets)
)
);
}
}
class MyButton extends StatelessWidget {
final String text;
MyButton(this.text);
@override
Widget build(BuildContext context) {
return FlatButton(
color: Colors.red,
child: Text(text),
onPressed: (){print("Pressed button '$text'.");},
);
}
}
मैंने एक पूर्ण उदाहरण बनाया कि मैं स्क्रीन पर विजेट्स को दिखाने और छिपाने के लिए डायनामिक विजेट का उपयोग करता हूं , आप इसे डार्ट फ़िडल पर भी ऑनलाइन देख सकते हैं ।
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
List item = [
{"title": "Button One", "color": 50},
{"title": "Button Two", "color": 100},
{"title": "Button Three", "color": 200},
{"title": "No show", "color": 0, "hide": '1'},
];
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text("Dynamic Widget - List<Widget>"),backgroundColor: Colors.blue),
body: Column(
children: <Widget>[
Center(child: buttonBar()),
Text('Click the buttons to hide it'),
]
)
)
);
}
Widget buttonBar() {
return Column(
children: item.where((e) => e['hide'] != '1').map<Widget>((document) {
return new FlatButton(
child: new Text(document['title']),
color: Color.fromARGB(document['color'], 0, 100, 0),
onPressed: () {
setState(() {
print("click on ${document['title']} lets hide it");
final tile = item.firstWhere((e) => e['title'] == document['title']);
tile['hide'] = '1';
});
},
);
}
).toList());
}
}
शायद यह किसी की मदद करे। यदि यह आपके लिए उपयोगी था, तो कृपया ऊपर तीर पर क्लिक करके मुझे बताएं। धन्यवाद।
https://dartpad.dev/b37b08cc25e0ccdba680090e9ef4b3c1