flutter-animation Questions
3
Solved
I am trying to generate a list in flutter which delays every item after some delay.
I was tried using FutureBuilder and AnimatedList but i failed to get it.
import 'dart:async';
import 'package:fl...
Prent asked 2/7, 2018 at 19:13
1
i want to display a global overlay loading instance in my main app widget
it works fine inside materialApp but when i used go router and turn it into MaterialApp.router
the state is changed but the...
Croteau asked 28/11, 2022 at 10:28
5
How do I change the duration/speed on transitions set in app's theme?
I am able to change the transition animation using a theme for a MaterialApp. The example below replaces the default transitio...
Calvados asked 14/10, 2019 at 14:44
3
Solved
I am using rows and columns in my layout and load some data from the internet to display information inside my rows and columns.
I want to design a dynamic loading page in such a way that every loa...
Villada asked 27/4, 2021 at 0:49
3
I am currently trying to learn flutter and trying to make a tic tac toe game in flutter. I want my game such that when I tap on a tile, the circles and crosses fall from above. I am trying to imple...
Isadora asked 6/4, 2019 at 14:1
3
I'm a beginner in Flutter and I'm currently building a map app that display a map with current user's continuous location using Flutter_map plugin and I used marker to display it ..
It really worki...
Posh asked 3/11, 2021 at 18:9
2
Solved
I'm using onpressed() to scroll down to bottom of the List view,
but i want to achieve that without Pressing the botton,
It must autoscroll for every screen opening.
I tried to put it inside initS...
Endodontist asked 27/6, 2018 at 17:36
6
Solved
When I use Navigator.pushNamed(context, "/someRoute");, there is a minimal animation which slides in the new route from the bottom of the screen (on Android, might look different on iOS).
How can ...
Gasolier asked 27/6, 2019 at 13:47
4
I am using flutter_native_splash 1.3.1 package to add splash screen to the app.
The image size is getting displayed bigger than the desired size on the splash screen. What is right approach to decr...
Karen asked 10/11, 2021 at 2:21
6
Solved
I would like to implement a floating action button that animates between extended and normal sizes, as seen in androids messenger app: https://blog.usejournal.com/expand-collapse-fab-on-scrolling-l...
Stockjobber asked 20/12, 2019 at 16:17
3
I am creating a WebView of this website
https://nearxt.com/
which asks for location when opened but when i use this link to create a webview in flutter
then it can not take location
i have also def...
Swayback asked 23/11, 2021 at 12:25
1
I'm using the Provider library and have a class that extends ChangeNotifier. The class provides an UnmodifiableListView of historicalRosters to my widgets.
I want to create an AnimatedListView tha...
Diagnose asked 2/7, 2019 at 17:12
2
Solved
I need to add some delay between each iteration of animation gets call to repeat. Something like the following image.
I tried to do it by passing value to the period parameter of the repeat method...
Circumambulate asked 7/10, 2020 at 3:37
3
Solved
body: Container(color: Colors.white,
child: SingleChildScrollView(
child : Column(
children : [
Padding(padding: EdgeInsets.only(left : 23.0, top: 23.0, right: 23.0, bottom: 5.0),
child : T...
Parthenos asked 20/1, 2020 at 9:26
1
Solved
Hello,
Setup:
In a Flutter StatefulWidget, I am attempting to add a TabBar to a SliverAppBar using the bottom parameter.
Problem:
Everything functions well, but I'm encountering an issue with unexp...
Shastashastra asked 4/12, 2023 at 18:15
3
I want to create a expandable container that have multiple controls like textentry and buttons.
So I have implemented a bottom sheet but I want to set this position on top.
Code:
Widget build(Bu...
Staves asked 4/6, 2019 at 9:15
4
How can I stack a Container over a keyboard similar to WhatsApp more section just like the below gif?
Alternatively, I tried using a bottom sheet, but bottom sheet closed the keyboard and then ope...
Iridotomy asked 16/5, 2021 at 12:14
22
Solved
I have a scrollable ListView where the number of items can change dynamically. Whenever a new item is added to the end of the list, I would like to programmatically scroll the ListView to the end. ...
Patterman asked 19/4, 2017 at 2:55
11
Solved
I have star png image and I need to rotate the star using Flutter AnimationController and Transformer. I couldn't find any documents or example for image rotation animation.
Any idea How to rotat...
Stiver asked 12/12, 2018 at 14:47
3
Solved
I have two children inside Column widget, the first one is simple Container and the second on is Expanded widget.
User can hide/show the first Container. In this case, I need to apply animation on...
Arthro asked 4/4, 2020 at 21:5
8
Solved
I am below code which given in flutter documentation for page routing
// Within the `FirstRoute` widget
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => Second...
Minimalist asked 3/9, 2019 at 13:46
2
Solved
When you open a modal bottom sheet in iOS, the previous background (the page before open the modal) has an animation, it goes thinner and seems the page and the modal build a stack of pages.
I know...
Chibouk asked 18/5, 2022 at 13:12
3
Solved
I have a container that starts at zero height and needs to be expanded after a user interaction.
I tried using AnimatedContainer / AnimatedSize and changing the child widget's height from 0 to nul...
Halifax asked 15/3, 2021 at 15:28
7
Solved
I have to use IndexedStack to maintain the state of my widgets for my BottomNavigationBar.
Now i want to use AnimatedSwitcher (or an alternative) to create an animation when i switch tabs.
I'm havi...
Hogen asked 28/8, 2019 at 14:1
2
Solved
I am using PageView along with BottomNavigationBar for navigating through my app.
I like the scrolling animation/transition between the pages when scrolling or navigating to a different page.
But t...
Poore asked 26/7, 2023 at 18:16
1 Next >
© 2022 - 2024 — McMap. All rights reserved.