dbutils 4.0.1 dbutils: ^4.0.1 copied to clipboard
Database utilities class library for SQLite and any number of other DBMS implemented in the future.
// 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 'package:flutter/cupertino.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(),
);
}