package_flutter_env 0.0.3+3
package_flutter_env: ^0.0.3+3 copied to clipboard
Using MIAppBarWidget to create a custom app bar.
example/lib/main.dart
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:package_flutter_env/package_flutter_env.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
final directory = Directory.current.path;
debugPrint(directory);
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: MIAppBarWidget(
automaticallyImplyLeading: true,
title: const Text(
"MI AppBar",
style: TextStyle(color: Colors.white),
),
toolbarHeight: 56,
leadingWidth: 50,
centerTitle: true,
backgroundColor: Colors.blue,
statusBarColor: Colors.blueGrey,
elevation: 10,
shadowColor: Colors.black,
//sideMargin: 10,
shapeBorder: const RoundedRectangleBorder(
borderRadius: BorderRadius.only(
bottomRight: Radius.circular(10),
bottomLeft: Radius.circular(10),
),
),
onBackButtonTapped: (BuildContext context) {},
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headlineMedium,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: const Icon(Icons.add),
),
);
}
}