psqlite 2.1.3 copy "psqlite: ^2.1.3" to clipboard
psqlite: ^2.1.3 copied to clipboard

PSQLite is a wrapper to work with SQLite databases in a simpler, more intuitive and scalable way for any Flutter project.

example/lib/main.dart

import 'package:example/view/home_view.dart';
import 'package:flutter/material.dart';
import 'package:flutter_easyloading/flutter_easyloading.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'PSQLite Example',
      builder: EasyLoading.init(),
      home: const HomeView(),
    );
  }
}
68
likes
0
pub points
20%
popularity

Publisher

verified publishermellrecognition.com

PSQLite is a wrapper to work with SQLite databases in a simpler, more intuitive and scalable way for any Flutter project.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, path, sqflite

More

Packages that depend on psqlite