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
2 answers

How to create a text border with embedded text and how to add multiple text fields inside the box?

I want to achieve the following text box but I'm stuck. I have added the border with the embedded text but I am not able to add multiple text fields like the screenshots within the bordered box. Please help. this is what I want to achieve
0
votes
1 answer

I have two images which is use for pin or unpin data in flutter

I have two images in flutter which is use for pin and unpin the data in list view so my program is that when i click on pin image than unpin image should be hide and when i click unpin image than pin image should hide. so how to implement this thing…
0
votes
2 answers

Flutter - Stack with Scaffold

I'm currently using Scaffold with BottomNavigationBar in a project and need to display a separated widget on top of all that. Tried to create a Stack on the build return and put this widget and the Scaffold as the children, but the widget is simply…
devgit
  • 1
  • 1
  • 4
0
votes
0 answers

why navigation doesn't work if using alignment property in Flutter?

I have created this page. I have made some navigation by routes. But the problem is I want to change the position of my IconButton to the Center bottom of the page. That's why I am using the alignment parameter but as soon as I use that parameter my…
0
votes
1 answer

Flutter: Replace bottom Dialog with alert dialog

When I click at an option of my bottom dialog, I want the bottom dialog to be replaced by an alert dialog, Here is my onTap's function code: Navigator.of(context).pushReplacement(MaterialPageRoute( builder: (_) => AlertDialog( shape:…
0
votes
1 answer

How to cut through an Opacity Widget in flutter?

I want to remove opacity from the center of a container to make the picture below it to be visible. What I want: What I tried: Code I Tried: import 'package:flutter/material.dart'; import…
Vettiyanakan
  • 7,957
  • 6
  • 37
  • 55
-1
votes
4 answers

How I can set this icon to top right corner without space in flutter UI

I am new for flutter I want this edit icon to top right corner without any space (margin) like this Edit icon touch to top right corner without and space and edit icon is over the ID row but when i code edit icon have some default space from top…
-1
votes
3 answers

Invalid constant value on Textformfield

I try to do show and hide password but it says Invalid constant value on the _togglePasswordView, And _isHidden I wonder what I did wrong If someone know plz help bool _isHidden = true; void _togglePasswordView() { setState(() { _isHidden =…
It'sPhil
  • 61
  • 1
  • 2
  • 11
-1
votes
1 answer

The named parameter 'body' isn't defined. Try correcting the name to an existing named parameter's name, or defining a named parameter with "body"

I'm just learning Flutter and I got such an error, but I entered the same commands as the video I watched, what should I do? Flutter Failed
-1
votes
1 answer
-1
votes
1 answer

How to make resposive ui for mobiles in flutter

I observed that widgets are showing bigger in a small screen and smaller in a big screen. In big screens it looks quite good but in smaller screens which looks very odd. How can I make a responsive and good-looking UI in different mobile screens…
-1
votes
1 answer

How to create specific text fields flutter?

How can i draw this text fields in flutter and add the text field inside? Thank you
power941
  • 105
  • 3
  • 6
-2
votes
1 answer

how do i create slider like instagram adjust slider in flutter?

(https://i.stack.imgur.com/NabBD.jpg)](https://i.stack.imgur.com/NabBD.jpg) I wanna create a custom slider like this?
-2
votes
1 answer

Check password If its match the old password

I want user to type in their password before they delete their acc. And I want the app to validate that password If its match the old password, How can I do it (this is my code so far) _deleteAcc(String _password) async { try { await…
It'sPhil
  • 61
  • 1
  • 2
  • 11
-2
votes
1 answer

Flutter : How to implement this custom design using CustomPainter()?

How can I implement below design using CustomPainter()?
Abhishek Kumar
  • 191
  • 1
  • 11
1 2 3
10
11