sleewok
sleewok
I am having other > Get.isDialogOpen does not work either. I was wondering why none of my loaders would hide. I check for that before hiding a loader because dismissing...
> Solution 2 fixed my issue with using Get.isDialogOpen(). Have you noticed any side effects from these changes? I'm using the custom_feedback.dart example code and get the following error when...
> > this should be fixed in version 4.0.0 > > I upgraded to version 4.0.0 and I can still see the discover brand logo. Yep, not fixed. This is...
To do this set the EasyLoading.instance.indicatorWidget to point to a custom widget that you have created. You can copy one of the existing indicators and just customize it to your...
Hopefully this helps: ` void configEasyLoading() { EasyLoading.instance ..backgroundColor = Colors.transparent ..progressColor = Colors.white ..indicatorWidget = MySpinKitRing(color: Colors.blue) ..boxShadow = [] // removes black background ..loadingStyle = EasyLoadingStyle.light ..textColor =...
You use it with EasyLoading.instance when setting the configuration. Just copy one of the existing indicator widget code and customize. Then set it.
Hope this helps. Copied the SpinKitRing widget code and added an image asset to the build. ``` /// EASY LOADING CONFIGURATION void configEasyLoading() { EasyLoading.instance ..backgroundColor = Colors.transparent ..progressColor =...
Possibly Related: I have a table with two columns. I have text in the right column and code at some point. If I select the code and format it the...
You guys are not getting this. The OP is proposing usability changes to improve the applet and associated notification. I am able to move the notice out of the way,...
> pass this options: CarouselOptions( scrollPhysics: this.allowSwipeToChangePages ? null : NeverScrollableScrollPhysics(), Doesn't work for me...