dbutils 6.1.0 copy "dbutils: ^6.1.0" to clipboard
dbutils: ^6.1.0 copied to clipboard

Database utilities class library for SQLite and any number of other DBMS implemented in the future.

example/lib/main.dart

// Copyright 2021 Andrious Solutions Ltd. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter/material.dart';

import 'src/employee_list.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) => MaterialApp(
        title: 'DBUtils Demo app',
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: const EmployeeList(key: Key('EmployeeList')),
      );
}
8
likes
150
points
156
downloads

Publisher

verified publisherandrioussolutions.com

Weekly Downloads

Database utilities class library for SQLite and any number of other DBMS implemented in the future.

Repository (GitHub)

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

cloud_firestore, firebase_auth, firebase_core, firebase_database, flutter, path, path_provider, sqflite

More

Packages that depend on dbutils