Posts

Showing posts from March, 2023

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" ), ...

azad cricket club

  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: [ Card ( child: Center ( child: Text ( 'Azad Cricket CLub' , style: TextStyle ( fontSize: 34 , fontWeight: FontWeight . bold , color: Colors . black , backgroundColor: Colors . white ), ), ), ), Container ( child: Center ( child: Text ( "Gudul" , style: TextStyle ( fontWeight: FontWeight . bold , fo...

6 march 2023

 I have to do something but I am not able to do so what should I do .... how can I How How How how How How How How How How How How How How How How How How How How How How How How How How How How How How How How How Ho Ho Ho Ho HO Ho Ho Ho H H Hh HhHHhhhhhhhhh hHh hhH hhhh?????????????????

Making a stack's with container

  body: Center ( child: Stack ( children: [ Container ( width: 300 , height: 300 , color: Colors . red , ), Positioned ( right: 50 , top: 45 , child: Container ( height: 200 , width: 200 , color: Colors . green , ), ), Positioned ( right: 105 , top: 95 , child: Container ( height: 100 , width: 100 , color: Colors . blue , ), ), Positioned ( top: 131 , right: 115 , child: Text ( "Minhaj Raza" ,style: TextStyle (fontSize: 15 ,fontWeight: FontWeight . bold ,color: Colors . white ),)) ], ), ),