Posts

Showing posts from June, 2023

creating instagram clone

  import 'package:flutter/material.dart' ; class InstagramClone extends StatelessWidget { @override Widget build ( BuildContext context ) { return MaterialApp ( debugShowCheckedModeBanner : false , home : Scaffold ( appBar : AppBar ( title : Text ( 'Instagram' ), ), body : SingleChildScrollView ( child : Column ( crossAxisAlignment : CrossAxisAlignment . start , children : [ // Header Container ( padding : EdgeInsets . all ( 16.0 ), child : Row ( mainAxisAlignment : MainAxisAlignment . spaceBetween , children : [ Icon ( Icons . camera_alt ), Text ( 'Instagram' , style : TextStyle ( fontSize : 20.0 , fontWeight : FontWeight . bold , ...

creating drawer in flutter

drawer: Drawer(          child: ListView(            padding: const EdgeInsets.all(0),            children: [              const DrawerHeader(                decoration: BoxDecoration(                  color: Colors.green,                ), //BoxDecoration                child: UserAccountsDrawerHeader(                  decoration: BoxDecoration(color: Colors.green),          ...