Questions tagged [flutter-design]

Questions relating to design oriented questions, while using Flutter. This should not be confused with flutter-layout and therefore should not be used as a synonym. Flutter-design questions should relate to correct usage and form of things such as the Material vs Cupertino design choices.

Questions relating to design oriented questions, while using Flutter. This should not be confused with flutter-layout and therefore should not be used as a synonym. Flutter-design questions should relate to correct usage and form of things such as the Material vs Cupertino design choices. Other acceptable topics could include following Google's design guidelines in Flutter (example). To clarify again this should rarely be used to reference Flutter functionality issues.

152 questions
0
votes
0 answers

Flutter create--Template module-overwrite

I trying to create a new flutter project under VS Code IDE. I install the flutter extension, but not running any project its shows running status in the notification as well shows the output as follows. Unable to 'pub upgrade' flutter tool. Retrying…
0
votes
0 answers

Flutter - No Such Method Error: The method '[]' was called on null. receiver: null tried calling [] (0)

I'm trying to open the camera in my app after pressing a button to capture images and videos. But I'm getting this message when I test it - NoSuchMethodError: The method '[]' was called on null. receiver: null tried calling [] (0) I'm new to…
0
votes
2 answers

How to get values from one class screen to another class and populate those values in flutter?

I have one main class and TimePickerScreen class, I am trying to get the values from TimePickerScreen class to Main class to populate those values, I wraped From and To Text with GestureDetector to call TimePickerScreen class within bottomSheet and…
0
votes
1 answer

Flutter, "LateInitializationError: Field '_alarmHelper@808171109' has not been initialized."

I am getting a "LateInitializationError: Field '_alarmHelper@808171109' has not been initialized." Whenever I try and initialize my database in flutter. Following you can find the full error itself: ======== Exception caught by widgets library…
0
votes
0 answers

Flutter App having performance issues after playstore push

I am beginner at flutter development.Completed my first app and also pushed to playstore.But after downloading the the app each click take more time to get the response and also the UI is incomplete.How can i find out the isuues with my app? For…
0
votes
0 answers

OutlinedBorder class to create custom button shape

I need help understanding how creating a custom shape in Flutter using the OutlinedBorder class works. I don't want to use clipping because I want to test if a custom shape would preferably not clip the button child as well. I would prefer if…
Aditya Nigam
  • 869
  • 2
  • 11
  • 21
0
votes
1 answer

Flutter How to create box container in price tag shape

How to create this corner-shaped card view in a flutter container..
0
votes
1 answer

How to bring widgets to next line in ListViewBuilder? flutter

ive been using flutter for past few months and now ive stuck in a problem where i get a list of tag names and i have to design a ui to show the tags to user as the image given below. , when i use ListViewBuilder and Row to display the tags as it…
Arvind suresh
  • 221
  • 1
  • 3
  • 12
0
votes
0 answers

Flutter Grid Modal Bottom Sheet

i want to make a modal but all the examples i find should be horizontally sorted vertically as in this code showModalBottomSheet( context: context, backgroundColor: Colors.white, …
Oquzayn
  • 13
  • 3
0
votes
2 answers

Flutter border radius aspect

Someone knows how to do soft border radius, something like that : Is it even possible with Flutter, I can't find how.
nativ
  • 39
  • 1
  • 6
0
votes
1 answer

How to wrap child widgets in AppBar for larger child heights and paddings in Flutter

I have struggled to find a method to fit the height of the AppBar based on action icon sizes and their padding. When padding is provided to leading and action icons, they are covered from the AppBar. Is there any kind of a method to achieve this…
0
votes
2 answers

How I can fill space between 2 circle in flutter?

My circle painter: CircleWavePainter(this.animationValue) { //add some property to paint wavePaint = Paint() ..color = Colors.black.withAlpha(100) ..style = PaintingStyle.stroke ..strokeWidth = 1 ..isAntiAlias = true; } My…
0
votes
3 answers

How to make this in Flutter i am new in flutter so if anyone knows

I want one row with this one big image on left and two images on right with one up and the second down. thanks in advance if Someone can help!!
Saif Khan
  • 116
  • 8
0
votes
1 answer

How to convert Linear Gradient from Figma to Flutter/Dart code

I have a design in Figma that contains Linear Gradient color which I want to import to Dart Code. The design looks like this The color code is provided in CSS in Figma background: linear-gradient(110.52deg, #FFE080 0%, #CB5F00 100%); border-radius:…
Maruf Hassan
  • 1,083
  • 18
  • 29
0
votes
1 answer

How we can use two rows in a single LsitView Widget Both scroll togather in flutter

I was tryiing to use double row in a single Listview which should scroll together in a single ListView Widget when i added double rows in a column inside the listview wigdget I combine both rows instead of creating a new row. Image is…
Farhan Aslam
  • 51
  • 1
  • 2