dbutils 6.0.0 copy "dbutils: ^6.0.0" to clipboard
dbutils: ^6.0.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
130
pub points
65%
popularity

Publisher

verified publisherandrioussolutions.com

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

Repository (GitHub)
View/report issues

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