flutter_eco_mode 0.0.1 copy "flutter_eco_mode: ^0.0.1" to clipboard
flutter_eco_mode: ^0.0.1 copied to clipboard

A Flutter plugin to help implementing custom eco-friendly mode in your mobile app.

example/lib/main.dart

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(),
          ),
        ),
      );
}
9
likes
0
pub points
47%
popularity

Publisher

verified publisherconnect-tech.sncf

A Flutter plugin to help implementing custom eco-friendly mode in your mobile app.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_eco_mode