Madhu
Madhu
shadcn_flutter: ^0.0.36 Am I using the PhoneInput form the right way? It would be helpful to [have sample code](https://sunarya-thito.github.io/shadcn_flutter/#/components/form) for using various types of widgets within the form, such as...
``` BlocBuilder( Form( Column( Column( FormField( ``` All widgets are shadcn_flutter package. No material widgets. I face the same issue with Select widget inside FormField as well. When I try...
Just tried with master branch and still getting the same error ``` shadcn_flutter: git: url: https://github.com/sunarya-thito/shadcn_flutter.git ref: master ``` The moment I added `FormField()` and passed `PhoneInput()` as `child`, it...
@sunarya-thito checking in to see if you have any update on this issue?
 @sunarya-thito Gentle ping on this issue. I created a new sample app with just four fields to test out the issue in isolation. This issue is still happening. Added...
form_sample.dart ``` import 'package:shadcn_flutter/shadcn_flutter.dart'; class FormView extends StatefulWidget { const FormView({super.key}); @override State createState() => _FormViewState(); } class _FormViewState extends State { final _playerDetailsFormController = FormController(); final _firstNameKey = const...
Error: ``` ════════ Exception caught by widgets library ═══════════════════════════════════ The following StackOverflowError was thrown building SurfaceCard(dependencies: [Theme, _InheritedModel]): Stack Overflow The relevant error-causing widget was: Scaffold Scaffold:file:///Users/madhu/development/flutter_sample_app/lib/form_sample.dart:72:12 When the exception...