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

outdated

Flutter plugin for manage your app with basic and general functionalities.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

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

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_platformVersion\n'),
        ),
        floatingActionButton: FloatingActionButton(
          onPressed: () {
            // Singleton();
          },
        ),
      ),
    );
  }
}
0
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Flutter plugin for manage your app with basic and general functionalities.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

base_data, base_models, crypto, encrypt, flutter, http, meta, path_provider, sembast

More

Packages that depend on base_flutter_app