Ahmed Mohsin

Results 2 comments of Ahmed Mohsin

After wrapping the HtmlEditor Widget with FutureBuilder it works fine in flutter web `FutureBuilder( future: Future.delayed(Duration(milliseconds: 50), () {}), builder: (context, snapshot) { if (snapshot.connectionState == ConnectionState.done) { return HtmlEditor();...