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

I want button like a this. but I can not set border or width

I want like a this button but I can not make it Please tell me that how to make about I did tryed code ElevatedButton( style: ElevatedButton.styleFrom( shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(30)), backgroundColor:…
Tdayo
  • 269
  • 4
  • 11
0
votes
0 answers

I am trying to design Custom tababr with time line

I am designing this screen with a tab bar view and sharp indicator design but I am unable to make it like shown on the screen and also I don't know how to make selected tab underline like shown in the given design and also calculate the timeline…
0
votes
1 answer

Responsive Layout with Flutter

I'm having issue while making the dashboard for my WebApp. I'm trying to make my webApp responsive. But not able to make it. Here is the image with the code for what I tried. import 'package:flutter/material.dart'; class MyHomeScreen extends…
0
votes
1 answer

I placed icons created with the "Flutter custom icons generator". But something is wrong.I would like to set up icons with a SVG-like design

issue I want to put icons like SVG. But I can't put it. The dart file generated by the Flutter custom icons generator. class WDLogo { WDLogo._(); static const _kFontFam = 'WDLogo'; static const String? _kFontPkg = null; static const…
Tdayo
  • 269
  • 4
  • 11
0
votes
1 answer

flutter desktop with audio player pakage problem

When i use this package show me this error "Nuget.exe not found, trying to download or use cached version". when i remove this package every things return normal but i need this package for turn on audio in desktop app .please if you have solution…
0
votes
0 answers

How to make container fixed. the container wont resize after clicking the widgets inside it . Flutter

I am having trouble with my design as i want this container as a background for my dropdowns and textformfield. but its changing its size once i click on description or dates. Please help how to make it fixed. i have attached some screenshots also…
0
votes
2 answers

How to make any widgets resizeable when in different screen size flutter

I want to make this image/Text resizeable when run on a smaller or bigger phone rights now it’s just look like not fitted to the screen. What widgets should I wrap it with? This is my IphoneS: And this is my current simulator (Iphone13): And some…
0
votes
1 answer

Flutter low quality blured widgets

I have the following design for a background of an app and would like to implement it in Flutter: My question is now what is the best way to implement it. Because I have tried to implement it with a BackdropFilter, but then it looks in the app…
Marco
  • 147
  • 1
  • 5
0
votes
1 answer

How can I draw low - medium - high chart in flutter

I want to draw a chart of BMI levels on my flutter app. Something similar to this image Is there some package I can use to help me achieve this or do you have any suggestions on how can I draw something similar to it. Thanks in advance
taha khamis
  • 401
  • 4
  • 22
0
votes
2 answers

Refresh a image and a text flutter

Im using statefull to refresh but i don't know what i have to write in setstate to refresh the slidedialog. i need to refresh an image that i choose the image in a dialog and it saves in a variable named ex3. this variable is a class with name,…
0
votes
1 answer

How to create page slider with page number indicator instead of dot indicator in flutter?

I want to create a page slider like shown in image but can't figure out how? All the methods I found was related to dot indicator. How to create this? page slider with page number indicator instead of dot indicator
0
votes
2 answers

I want to right justify the TextButton in Flutter

I want to send the "See More" button in the middle to the right. Row( children: [ Stack( children: const [ Align( alignment: Alignment.topLeft, …
0
votes
0 answers

How to set a pop up message to appear in a page when Navigating from a specific route in flutter

I am wondering If there is a way to set a pop up message (Alert Dialogs) to appear on the screen when coming from a specific page. Lets say that I have 3 screens. When I navigate from screen 1 to screen 2, no pop message will appear, however if I…
taha khamis
  • 401
  • 4
  • 22
0
votes
1 answer

How to collapse the popup menu in Flutter

How can I narrow the width of the popup menu in the navbar? How can I zoom the icon and text? I can't open the width tag, I think a different customization is required. actions: [ PopupMenuButton<_MenuValues>( color: const…
0
votes
1 answer

How do I add a gradient to a TextField in Flutter?

I'm just learning flutter. Is it possible to do this in textField ? I can't find it. Example
Aidar
  • 9
  • 2