dev_menu 1.0.4 copy "dev_menu: ^1.0.4" to clipboard
dev_menu: ^1.0.4 copied to clipboard

Made to make team members(Dev,QA,PM) life easier while in development. Easily find out device/app info, turn certain features on and off, and preview your Widgets.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:dev_menu_example/home_screen.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: HomeScreen(),
    );
  }
}
5
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Made to make team members(Dev,QA,PM) life easier while in development. Easily find out device/app info, turn certain features on and off, and preview your Widgets.

Repository

License

MIT (LICENSE)

Dependencies

device_info, flutter, shared_preferences

More

Packages that depend on dev_menu