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
1 answer

Opposite direction progress bar

In Flutter for mobile app i'm trying to implement progress bar is such a way it compares two scores. Suggest me some package to give me some sample code.
0
votes
0 answers

I want to draw these progress indicators in flutter. Is this possible in flutter? I face many difficulties while making this.Please help me

1st image: 2nd image: In these pictures all colors represents progresses. I have tried multi_circular_slider package and other packages like that!
0
votes
0 answers

How to create Nested Dragaable List in Flutter?

I need to create a Nested List UI & pass on the list data to API. You can checkout this Javascript Library for Reference How can I achieve the same behaviour in Flutter. I have tried customizing ReorderableListView & Dragabble but cannot achieve the…
Milan Surelia
  • 884
  • 1
  • 8
  • 18
0
votes
1 answer

Flutter : how to remove bg color from bottonNavBar?

Here i want to remove my bottomNavigationBar bgColor , when i am using "extendBody: true" then i my container item is not scrolling this is my code. import 'package:flutter/material.dart'; import…
Deepak
  • 1,664
  • 3
  • 19
  • 52
0
votes
1 answer

Can I Make A Container On One Another Small Container at main container border?

Like This Type I Want to make this type of UI and it's possible without using Stack?
0
votes
0 answers

How to match flutter text style to figma text style

flutter text style is not matching exactly Figma design. I've copied fontFamily, fontSize, fontWeight from figma design to flutter but both the text looks differently. even after view figma design in actual size (100%). How to make flutter UI pixel…
0
votes
2 answers

flutter: how to fix button width and container textfield border?

I want to create a apply coupon section , In this section i have used a textfield and Button, i want to set border only three side laft,top and bottom and right side will be a button. This is my code. Padding( padding: const…
Deepak
  • 1,664
  • 3
  • 19
  • 52
0
votes
1 answer

How to do a gold / metal static look in Flutter?

I would like to apply some effects on Icons and Cards to get a gold look like on the picture. I assume we would need a LinearGradient and a shadow with another LinearGradient, or perhaps a Stack with a second icon that is slightly larger with a…
giorgio79
  • 3,787
  • 9
  • 53
  • 85
0
votes
2 answers

Flutter problem - Row spaceBetween not working

I want spacing between text and image but here row spaceBetween is not working, and when I am using expanded then i am getting error. how to resolve this. This is my code. AspectRatio( aspectRatio: 16 / 4.5, child:…
Deepak
  • 1,664
  • 3
  • 19
  • 52
0
votes
1 answer

Flutter giving null TextEditingController.text when mapped through an object list

I want to make an object list that will contain all the fields for a form and then map all the Object from the list as form field widget and then display then grab all the input of the user in console Custom Object that I created this will contain…
hoor Iqbal
  • 39
  • 6
0
votes
0 answers

Expand/Collapse functionality between to list in flutter

I'm trying to get Expand/Collapse after I choose an item, after closing I find the range error. I tried to use this package and this package but I did not succeed How could you solve this problem? please check the following video and suggest how can…
0
votes
1 answer

I want to put height constraints on a Flexible widget

My screen has three widgets : First one is a ListView of widgets, the number of widgets can be incremented with a button. I want the ListView to take only the required space that's why I wrapped it in Flexible, but I don't want it to exceed the…
0
votes
0 answers

How to decorate Stepper widget in Flutter

I want decorate my stepper widget. I can't find any widget to customise the defalut design. I want to make this design but stapper widget constructor doesn't have any decoration attribute. So how to achieve this design.
0
votes
0 answers

increase size of my container according to aspect ratio of image flutter like instagram or facebook

Row( children: [ Expanded( child: InkWell( onTap: () {}, child: Hero( tag: image, child: Container( child: CachedNetworkImage( …
0
votes
1 answer

I want make like a this Floating action button

but I can not make this . I want know how to make it maybe it need shadow or offset now my code floatingActionButton: _videoController?.value.isInitialized != null ? FloatingActionButton( backgroundColor:…
Tdayo
  • 269
  • 4
  • 11