Top "Flutter-widget" questions

Flutter - Overlay card widget on a container

In flutter, is it possible to place a part of a card on another container? In CSS, we would set …

flutter dart flutter-layout overlay flutter-widget
Flutter – two text in a row with left one overflowing gracefully

How do I get two side-by-side Text widgets to only allow the left-most one to overflow gracefully? One text widget …

flutter dart text flutter-layout flutter-widget
Flutter: Object was given an infinite size during layout

I'm battling an issue where I'm given the error "Object was given an infinite size during layout" and "This probably …

flutter dart layout flutter-layout flutter-widget
flutter - SliverList / SliverChildBuilderDelegate supply initial index or allow negative indices

I'm currently building a calendar view in Flutter using a SliverList and a SliverChildBuilderDelegate such that I don't have to …

flutter dart flutter-layout flutter-sliver flutter-widget
In Flutter, how do I pass data into a Stateless Widget?

I'm trying to build my first Flutter app, and have run into difficulty with passing data into Stateless Widgets. I …

flutter statelesswidget flutter-widget
Flutter : How to add scroll indicator in ListView

Is there any way to show the scroll indicator on the ListView? Here is my basic code : ListView.builder( itemCount: 50, …

flutter listview dart scrollview flutter-widget
Make buttons in a row have the same width in flutter

If I want to make two or more Buttons in a Row to have the same Width, how do I …

flutter dart button flutter-layout flutter-widget
How to create a custom AppBar widget?

I'm new to flutter. I'm trying to create a custom appbar widget and importing the widget in pages. But I …

flutter dart appbar flutter-widget
How to move a widget in the screen in Flutter

I am using flutter and i have a container with the shape of a circle using this code new Container( …

flutter dart move flutter-widget
How to take a screenshot of the current widget - Flutter

I need to take a screenshot of the current screen or widget and I need to write it into a …

flutter dart screenshot fullscreen flutter-widget