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,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.red,
),
Container(
child: Center(
child: Text(
"Golu",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.green,
),
Container(
child: Center(
child: Text(
"Kaila",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.yellow,
),
Container(
child: Center(
child: Text(
"Chutur",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.blue,
),
Container(
child: Center(
child: Text(
"Samsir",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.pink,
),
Container(
child: Center(
child: Text(
"Lullih",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.grey,
),
Container(
child: Center(
child: Text(
"Riju",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.red,
),
Container(
child: Center(
child: Text(
"Minhaj",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.green,
),
Container(
child: Center(
child: Text(
"Babble",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.yellow,
),
Container(
child: Center(
child: Text(
"Pintu",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.blue,
),
Container(
child: Center(
child: Text(
"Tanveer",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.pink,
),
Container(
child: Center(
child: Text(
"Dablu",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 54,
color: Colors.white),
)),
height: 100,
color: Colors.grey,
),
],
),
);
}
}
Comments
Post a Comment