Making a contact list in flutter
import 'package:flutter/material.dart' ; class fireBase extends StatefulWidget { const fireBase ({ Key ? key}) : super (key: key); @override State < fireBase > createState () => _fireBaseState (); } class _fireBaseState extends State < fireBase > { @override Widget build ( BuildContext context) { return Scaffold ( body: ListView ( children: [ Container ( child: Card ( color: Colors . white , child: ListTile ( leading: Icon ( Icons . call_made ,), title: Text ( "Mamu" ), subtitle: Text ( '82634668247' ), trailing: Icon ( Icons . info_outline ), ), ), ), Container ( child: Card ( color: Colors . white , child: ListTile ( leading: Icon ( Icons . call_made ,), title: Text ( "Mamu" ), ...