我正在尝试在Cupertino应用程序中使用ChoiceChip
小部件。
我在GitHub上找到了此解决方案https://github.com/flutter/flutter/issues/21872#issuecomment-421508939
CupertinoApp(
localizationsDelegates: const <LocalizationsDelegate<dynamic>>[
DefaultMaterialLocalizations.delegate,
DefaultWidgetsLocalizations.delegate,
],
title: 'Flutter Demo',
home: new MyHomePage(title: 'Flutter Demo Home Page'),
)
这是我的代码
return CupertinoApp(
localizationsDelegates: const <LocalizationsDelegate<dynamic>>[
DefaultWidgetsLocalizations.delegate,
],
home: CupertinoStoreHomePage(),
);
_buildChoiceList() {
List<Widget> choices = List();
widget.reportList.forEach((item) {
choices.add(Container(
child: ChoiceChip(
label: Text(item),
selected: selectedChoice == item,
onSelected: (selected) {
setState(() {
selectedChoice = item;
widget.onChoiceSelected(item);
});
},
),
));
});
return choices;
}
我得到这个错误
════════小部件库捕获到异常══════════════════════════════════ ═ 构建断言ChoiceChip(dirty)时引发了以下断言: 找不到材料小部件。
ChoiceChip小部件需要Material小部件祖先。
答案 0 :(得分:0)
在CupertinoStoreHomePage中需要脚手架
完整的工作代码和演示,请参见下面的
代码段
CupertinoApp(
localizationsDelegates: const <LocalizationsDelegate<dynamic>>[
DefaultMaterialLocalizations.delegate,
DefaultWidgetsLocalizations.delegate,
],
home: CupertinoStoreHomePage(
reportList: ["a", "b"],
onChoiceSelected: (item) {
print(item);
},
),
)
完整代码
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return CupertinoApp(
localizationsDelegates: const <LocalizationsDelegate<dynamic>>[
DefaultMaterialLocalizations.delegate,
DefaultWidgetsLocalizations.delegate,
],
home: CupertinoStoreHomePage(
reportList: ["a", "b"],
onChoiceSelected: (item) {
print(item);
},
),
);
}
}
class CupertinoStoreHomePage extends StatefulWidget {
List<String> reportList;
Function(String) onChoiceSelected;
CupertinoStoreHomePage({Key key, this.reportList, this.onChoiceSelected})
: super(key: key);
@override
_CupertinoStoreHomePageState createState() => _CupertinoStoreHomePageState();
}
class _CupertinoStoreHomePageState extends State<CupertinoStoreHomePage> {
String selectedChoice;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text("demo"),
),
body: Column(
// Column is also a layout widget. It takes a list of children and
// arranges them vertically. By default, it sizes itself to fit its
// children horizontally, and tries to be as tall as its parent.
//
// Invoke "debug painting" (press "p" in the console, choose the
// "Toggle Debug Paint" action from the Flutter Inspector in Android
// Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
// to see the wireframe for each widget.
//
// Column has various properties to control how it sizes itself and
// how it positions its children. Here we use mainAxisAlignment to
// center the children vertically; the main axis here is the vertical
// axis because Columns are vertical (the cross axis would be
// horizontal).
mainAxisAlignment: MainAxisAlignment.center,
children: _buildChoiceList(),
));
}
_buildChoiceList() {
List<Widget> choices = List();
widget.reportList.forEach((item) {
choices.add(Container(
child: ChoiceChip(
label: Text(item),
selected: selectedChoice == item,
onSelected: (selected) {
setState(() {
selectedChoice = item;
widget.onChoiceSelected(item);
});
},
),
));
});
return choices;
}
}
输出
I/flutter (10201): a
I/flutter (10201): b