This is the created in android previously but i want to create same on flutter
This calender i have created using a table calender package
Related
I am learning flutterflow at the moment. I came across Flutter and I was wondering, could I use Flutter code, and add it to my project and finish it with flutterflow?
for flutterflow you can only add your flutter code either in custom widgets , custom functions or custom actions.
how to create a custom popup menu with flutter same this with Flutter Code:-
enter image description here
These packages may solve your problem:
https://pub.dev/packages/show_more_text_popup
https://pub.dev/packages/quds_popup_menu (allows for buttons within the popup)
https://pub.dev/packages/super_tooltip
enter image description here
how to create calendar in flutter scrollable like in the picture. I tried find some plugins but cant found!
Hey you can Check this package
https://pub.dev/packages/flutter_calendar_nullsafety
I'm unable to find a way to create an input field in Flutter that would open up a drop downlist of name. Is this possible with Flutter material widgets?
just like this
You can make use dropdown_formfield package:
I can create a dropdown for android using DropdownButton and DropdownMenuItem widgets.But for ios I couldn't see any widgets like dropdown. I have seen on Cupertino (iOS-style) widgets also, but I didn't get any idea.Is there any option to create a dropdown for ios?
In iOS, the dropdown known as Picker. You can try the Cupertino Picker Widget.
Here is the Documentation: https://api.flutter.dev/flutter/cupertino/CupertinoPicker-class.html
And Here is the repo with an example, that will show you how you can implement: https://github.com/dhuma1981/Flutter_Cupertino_Demo