前提・実現したいこと
For文の後ろに "..." ドット三つがあるのですが,これがどう言う意味なのか分かりません。なければエラーを吐きます。(
下記参照)
エラーメッセージ
the element type 'Map<dynamic, dynamic>' can't be assigned to the list type 'widget'
該当のソースコード
class BlogView extends StatelessWidget { static const title = 'Blog.'; @override Widget build(BuildContext context) { return MobileDesktopViewBuilder( mobileView: BlogMobileView(), desktopView: BlogDesktopView(), ); } } class BlogDesktopView extends StatelessWidget { const BlogDesktopView({ Key key, }) : super(key: key); @override Widget build(BuildContext context) { return DesktopViewBuilder(title: BlogView.title, children: [ Row( children: [ for (var i = 0; i < 2; i++) ...{ } ], ) ]); } }
補足情報(FW/ツールのバージョンなど)
Dart
Flutter
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/06 09:28