Shih-Chang Hsiung
Results
1
comments of
Shih-Chang Hsiung
Use initState instead will fix this issue: @override void initState() { if (widget.asset == true) { rootBundle.loadString(widget.path).then((String value) { setState(() { object = value; }); }); } else { File...