Flutter position fixed equivalent

You can absolutely position a child of a Stack widget using the Positioned widget.

The minimal example below places the red box above the list view, by placing the child in a Positioned widget after the ListView in the Stack’s children.

List<String> todos = [...];
return new Stack(
  children: <Widget>[
    new ListView(
     children: todos
       .map((todo) => new ListTile(title: new Text(todo)))
       .toList(),
     ),
     new Positioned(
       left: 30.0,
       top: 30.0,
       child: new Container(
         width: 100.0,
         height: 80.0,
         decoration: new BoxDecoration(color: Colors.red),
         child: new Text('hello'),
        )
      ),
   ],
);

And here it is inside of a Scaffold body. If you add more items you’ll find that the list scrolls without moving the red box.

an absolutely positioned example

Leave a Comment

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)