flutter_eco_mode 0.0.1 flutter_eco_mode: ^0.0.1 copied to clipboard
A Flutter plugin to help implementing custom eco-friendly mode in your mobile app.
import 'package:flutter/material.dart';
import 'package:flutter_eco_mode_example/results.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) => MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: const Center(
child: Results(),
),
),
);
}