Saturday, May 14, 2022

AppBar With Scaffold

 AppBar

With 

Scaffold


import 'package:flutter/material.dart';


void main(){
  runApp(MaterialApp(
    home: Scaffold(
      appBar: AppBar(
        title: Text("App Bar Widget"),
        backgroundColor: Colors.purple.withOpacity(.50),
      ),    // AppBar
),
),    ðŸ’ª // MaterialApp
);
}





No comments:

Post a Comment

Featured post

Compress Image With Show File Size & Resolution in Flutter

 Compress Image With Show File Size & Resolution  1.Multiple File Image Compress with file Size import 'dart:io' ; import 'p...

LightBlog