flutter_echarts
flutter_echarts copied to clipboard
使用gauge仪表盘,界面显示空白。请问是什么原因,如何修改
@override Widget build(BuildContext context) { return Container( // 必须要用container height: 180, width: 300, child: Echarts( option: ''' { tooltip: { }, series: [ { name: 'Pressure', type: 'gauge', detail: { }, data: [ { value: 50, name: 'SCORE' } ] } ] } ''', ), ); } }