In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article shows you how to use flutter to create mobile stack widgets, the content is very detailed, interested friends can refer to, hope to help you.
This article mainly introduces a super secret Flutter project I designed for desktops and Web using canvas and draggable node interfaces.
As shown below.
We will dynamically add items to the stack and distinguish them, and I will use the RandomColor typer. So we have to add that bag.
Random_color:
Then we can create a HomeView that contains our stack
Class HomeView extends StatefulWidget {@ override _ HomeViewState createState () = > _ HomeViewState ();} class _ HomeViewState extends State {List movableItems = []; @ override Widget build (BuildContext context) {return Scaffold (body: Stack (children: movableItems,));}}
The function is very simple. We will have a MoveableStackItem stateful widget. It tracks its location and color. The color is set during initialization, and the location is updated by updating the GestureDetector.
Class _ MoveableStackItemState extends State {double xPosition = 0; double yPosition = 0; Color color; @ override void initState () {color = RandomColor (). RandomColor (); super.initState ();} @ override Widget build (BuildContext context) {return Positioned (top: yPosition, left: xPosition, child: GestureDetector (onPanUpdate: (tapInfo) {setState (() {xPosition + = tapInfo.delta.dx) YPosition + = tapInfo.delta.dy;});}, child: Container (width: 150, height: 150, color: color,),);}}
The last thing to do is to add a new one to the MoveableStackItem view. We will do this through the floating operation button in HomeView.
Return Scaffold (floatingActionButton: FloatingActionButton (onPressed:) {setState (() {movableItems.add (MoveableStackItem ());});},), body: Stack (children: movableItems,))
okay. Now you have a removable Stack on your view.
So much for sharing on how to use flutter to create mobile stack widgets. I hope the above can be helpful and learn more. If you think the article is good, you can share it for more people to see.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.