All Questions
Tagged with user-experience dart
27 questions
0
votes
2
answers
121
views
Gradually smoothen the backdrop blur in flutter
I have a tab bar, and i wanted a backdrop filter blur on it.
Which i did using the following code:
ClipRRect(
child: BackdropFilter(
filter: ImageFilter.blur(...
0
votes
1
answer
32
views
Is there a way to show a login screen when app becomes inactive and then once user login, the app resumes like nothing happened in flutter?
The thing I want to implement - App launches from splash screen, goes to login screen and then to home screen and user can continue from there. Now let's assume the user is on profile screen and then ...
0
votes
0
answers
114
views
Re-creating Forest App's UI (Forest element) in Flutter
I want to clone the Forest: Focus for Productivity in Flutter. Specifically, I'm interested in recreating the forest part of the UI. I'm uncertain about the feasibility of achieving this solely within ...
1
vote
1
answer
44
views
I would like to set AnimatedOpacity to only a part, but it will only be reflected in the terminal child widget
I want to create a button that displays a border while being pressed.
However, I want to control whether the border is shown or hidden using AnimatedOpacity, but the button itself becomes hidden.
How ...
2
votes
1
answer
456
views
How to Create a Display Rearranging UI in Flutter for Multiple Displays like Windows OS?
I am working on a Flutter desktop application and I need to implement a UI that allows users to rearrange displays when they connect multiple monitors, similar to the functionality in Windows OS.
The ...
0
votes
0
answers
38
views
calculating SmoothPageIndicator positioning
As you can see, the carousel dots aren't lining up as expected.
I am trying to get the height of the SizedBox above the SmoothPageIndicator such that the indicator will be at the bottom of the screen....
0
votes
1
answer
1k
views
How to make a new incoming child page fade in and scale up as it transitions into the sceen
I'm trying to understand how to use AnimatedSwitcher in Flutter in order to create transition animations between two pages, what I want exactly is for the new page to fade in the screen slowly from ...
0
votes
1
answer
50
views
In flutter I wants to keep the container module stable when another module changes its behaviour
Below is my code where two containers used one is for uploading front image another one is for uploading back image.Whenever I uploads any one front or back image another container changes its ...
0
votes
1
answer
564
views
How to write styles in flutter as classes
Let's say I have a souple of components using the same styles but I want it to write as classes like in html and css
Is there a way this is possible?
By the way I'm a noob to coding started a year ...
0
votes
0
answers
170
views
Possible to update/rebuild open DropdownButtonFormField?
Is it possible to uppdate or rebuild open DropdownButtonFormField, e.g. with GetIt or Provider - or perhaps by using a stream - when new data becomes available?
At the moment the options in the ...
0
votes
1
answer
155
views
Can Flutter reliably render "0.5"-width lines?
When designing UX, I find sometimes 0.5-width lines are suitable. For example, Divider(thickness: 0.5).
However, I wonder whether this can be rendered reliably in all kinds of devices? For example, ...
0
votes
1
answer
77
views
TabBar scroll/slide making inaccuracy of displaying
I uses Container 's color to make indicator-like rather than using TabBar's indicator as I've to implement some animation to the Container.
When TabController index is changing, setState is called in ...
-3
votes
1
answer
1k
views
How do I make this card floating glass effect in flutter? [closed]
I wanna know how I can make this UI card on flutter?
Can someone help me with this please?
0
votes
2
answers
505
views
How to manage user feedback?
I am working on an app and would like to allow users to provide feedback, ask questions etc. I'm doing this to improve user experience and allow for an avenue for users to communicate with me. The ...
0
votes
1
answer
40
views
Custom clipper not moving when I use Align
I am creating an UI which contains 5-6 polygons on the page. I inserted 2 of them. But when i try to move them using Align(), its not moving at all. Here is the code of mine:
import 'package:flutter/...