field_suggestion icon indicating copy to clipboard operation
field_suggestion copied to clipboard

`network` widget variant to use package-widget for network base searching

Open theiskaa opened this issue 3 years ago • 0 comments

Current version of widget requires already providen suggestions. And which makes working with network so hard. So, we've to implement a factory builder to create network-usage appropriate widget which don't requires the suggestions (maybe gonna request something different).

FieldSuggestion.network(
 boxBuilder: (context, index) {
   if(isLoading) return Center(child: LoadingWidget());

   return SingleChildScrollView(
     child: Column(
       children: [
          // ...
       ],
     ),
   );
 }
)

theiskaa avatar Jun 20 '22 05:06 theiskaa