wiztensai

Results 9 comments of wiztensai
trafficstars

please merge it, i need this feature because my label is long

i think it happen because the graph is init in hurry time. i use graph in ViewPager2 i solved it by give some delay `bind.barChart.postDelayed(Runnable { bind.barChart.show(datas) }, 5)`

although i put reloadAfterInit=true, its still blank/not showing chart. but after i put some delay to in build method, it show now. ``` Future.delayed(Duration(milliseconds: 100), () { setState(() { _show...

in my case, it work if your sintax like this: `getSharedPref().edit(true, { clear() })`

use Sharedprefences work. but you need to reload the prefs. follow this [sso answer](https://stackoverflow.com/a/67721647/5855782) ``` SharedPreferences prefs= await SharedPreferences.getInstance(); await prefs.reload(); final int counter = (prefs.getInt('badge') ?? 0); ```

Precondition: - App is opening - Alarm notification is coming Step: - User swipe out alarm notif in notif tray Expected behaviour: - Alarm sound is stop after user swipe...

same issue. please update.

if you double tap, medium scale is working. so, you can limit medium scale to its minimum scale. so the solution is : ``` // to avoid this exception "Minimum...