skip to Main Content

Create widget in flutter

I'm trying to create this widget here This is the result I got, I'm having trouble limiting the size of the widget without decreasing the text SizedBox( height: 90, width: double.infinity, child: ListView.builder( itemCount: 10, shrinkWrap: true, padding: const EdgeInsets.symmetric(vertical:…

VIEW QUESTION

Input In Flutter Text Fields

Hey was trying to create my first flutter app where i have a home screen containing a NavBar that will render a page on the scaffold body depending on which NavBarItem is selected. import 'package:firebase_auth/firebase_auth.dart'; import 'package:ionicons/ionicons.dart'; import 'package:flutter/material.dart'; import…

VIEW QUESTION
Back To Top
Search