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