All Questions
119 questions
0
votes
1
answer
30
views
FadeInUp animation resets in flutter
I'm using animate_do: ^3.1.2 and when I use FadeInUp on a TextField the animation restarts, for example, when I write in one and then in another the animation restarts, however the text I wrote there ...
0
votes
0
answers
34
views
How does rebuilding of widgets work in flutter is it based on keys or on the state or on runtime type of widget?
What happens when a new instance of a widget has same key as the old instance and the childrens have different state in the new widget instance?
In the Flutter docs, it says that The new Widget is ...
0
votes
1
answer
39
views
How to switch to a parent tab on sub-tab swipe in Flutter?
I'm building a Flutter app with nested TabBarView widgets. The parent tab has two main tabs ("Tab 1" and "Tab 2"). Inside "Tab 2", there are sub-tabs ("Sub Tab 1&...
0
votes
1
answer
41
views
Show case view Error - Flutter Mobile App
The showcase view working in debug mode. But in release mode showcase view not displaying.
This ShowCaseWidget widget cannot be marked as needing to build because the framework is already in the ...
0
votes
1
answer
96
views
Showcase view scroll issue - Flutter Mobile App
showcaseview: ^3.0.0
final GlobalKey iconShowcaseKey = GlobalKey();
/////
VisibilityDetector(
key: Key(
'visibility_detector'),
onVisibilityChanged: (visibilityInfo) {
...
0
votes
0
answers
24
views
Bottom Naviagtion Bar does not excecute backdrop filter in flutter
I want to have a bottom naviagation bar in my app with a transparent blurred background similar to the one in the picture below
enter image description here
I figured out this effect in general could ...
0
votes
0
answers
100
views
How to create list animation like IOS does for its notification list in flutter
I want to create list animation just like iOS does for it notification list using flutter.
the only difference is I want to show the list from top of screen not bottom
for reference I have added the ...
0
votes
0
answers
171
views
Flutter animate using SystemChrome.setEnabledSystemUIMode or prevent content jumping in android
Writing an app I need to go from a card with description of film to the video player and back. When I am at the card page I have system controls (top and bottom), when I go to the video player page, I ...
0
votes
2
answers
994
views
Animated native splash screen in Android/Flutter
I'm very new to Flutter and Android apps (seasoned dev in other languages, Java, C++, etc) and I've been following a few tutorials online on how it all works. One thing I've been trying to do as a ...
1
vote
0
answers
317
views
smooth transition from native splash sceen(flutter_native_splash) to an animated page(Flutter) - how to do?
I am working on a Flutter app (Android/iOS), and I'm using the flutter_native_splash plugin to create a static splash screen. However, my client wants an animated splash screen immediately following ...
0
votes
2
answers
245
views
Can't import a Rive animation in my flutter app
I am really struggling to import a single Rive animation into my Flutter app, and it doesn't work!
Here is the Rive file I downloaded and added to my assets, and I got all the dependencies of Rive too,...
0
votes
1
answer
86
views
How to use SlideTransition defined on a different page on the other page in Flutter
I'm not even sure I chose the right title for my problem.
I designed a one home page, this home page has 2 different widgets. I separated these widgets into 2 different dart files to avoid writing ...
0
votes
1
answer
238
views
Removing Unwanted Lines in Flutter's SliverList within CustomScrollView
Hello,
Setup:
I am trying to render a SliverList in a CustomScrollView. The list items are a different color than the background.
Problem:
I am getting strange 1px lines between SliverList items, and ...
0
votes
1
answer
30
views
Splash_Screen to Login_Screen... Error: Too few positional arguments: 1 required, 0 given
lib/splash_screen.dart:22:59: Error: Too few positional arguments: 1 required, 0 given.
MaterialPageRoute(builder: (_) => const Login_Screen()));
^
lib/login.dart:6:9: Context: Found this candidate,...
0
votes
1
answer
60
views
Showing grey screen without error in release mode (when connected)
The below screen with the scaffold, is causing the screen to go grey, there is no error as I have a custom widget to be showed when there is an error, but this is just grey screen, I have isolated the ...