Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

how to small button in futter inside a listview

    return Container(
                  margin: EdgeInsets.symmetric(horizontal: 30),
                  padding: itemEdges,
                  child: Align(
                    child: SizedBox(
                      width: 250,
                      child: ElevatedButton(
                        child: Text("index: $index"),
                        onPressed: () {},
                      ),
                    ),
                  ),
                );
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #small #button #futter #listview
ADD COMMENT
Topic
Name
9+5 =