-PieChart
を使用した際、以下のエラーが出ました。(PieChartは表示されず。)
pub dev
Error
1Rect argument contained a NaN value. 2'dart:ui/painting.dart': 3Failed assertion: line 27: '<optimized out>'
解決策を教えて頂けると嬉しいです。????
以下、PieChartのコードです。
Flutter
1Positioned( 2 right: 16, 3 top: 0, 4 bottom: 0, 5 child: Container( 6 width: MediaQuery.of(context).size.width/2, 7 child: PieChart( 8 PieChartData( 9 sections: [ 10 PieChartSectionData(value: 35, color: Colors.red, title: '35%'), 11 PieChartSectionData(value: 15, color: Colors.indigo, title: '35%'), 12 PieChartSectionData(value: 45, color: Colors.indigo, title: '35%'), 13 ] 14 ) 15 ), 16 ), 17 ),
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/13 10:29