bulingitmarkdionnie-gwf
bulingitmarkdionnie-gwf
I want to show a bottomBar on Mobile & Tablet but hide it on Desktop. ``` bottomNavigationBuilder: (_, tabsRouter) { return !MyScreenSize.isDesktop(context) ? EzoAppBottomBar( tabsRouter: tabsRouter, ) :Container(); }, ```...
All the fields on last column are being reset when I resize the screen 
On Flutter's Row & Column, there are cross-axis & main-axis alignment which is not available to your package
Incorrect GestureDetector arguments. Having both a pan gesture recognizer and a scale gesture recognizer is redundant; scale is a superset of pan. Just use the scale gesture recognizer.
I have a model "Card" that can have many "CustomLinks" that's why I used FormArrayAnnotation, I'm very sure that the form array have values but when I tried to check...
I have this form class (generated by ReactiveFormsGenerator) called ReactiveProductForm, can you please provide an example where ReactiveProductForm is placed on ViewModel and being called on View? I already check...
So far we can do 2 things: 1. Listen to the WHOLE form if something has changed. 2. Listen to specific field if its value has changed. But how about...
Hello! I managed to run the sample code you provided on this tutorial (https://github.com/FilledStacks/stacked-example) today, March, 3, 2022 4:59pm, but it took me 3 hours to update and debug everything...