psqlite 2.3.3 copy "psqlite: ^2.3.3" to clipboard
psqlite: ^2.3.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',
      theme: ThemeData.light(useMaterial3: true).copyWith(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.blueAccent),
      ),
      builder: EasyLoading.init(),
      home: const HomeView(),
    );
  }
}
68
likes
130
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

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, path, sqflite

More

Packages that depend on psqlite