sqlite3_async 1.0.1 copy "sqlite3_async: ^1.0.1" to clipboard
sqlite3_async: ^1.0.1 copied to clipboard

outdated

Provides a subset of async operations on top of sqlite3 Database class.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:sqlite3_async_example/ui/home_page.dart';
import 'package:sqlite3_async_example/ui/loading_page.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      initialRoute: LoadingPage.route,
      routes: {
        LoadingPage.route: (context) => const LoadingPage(),
        MyHomePage.route: (context) =>
            const MyHomePage(title: 'Flutter Demo Home Page'),
      },
    );
  }
}
3
likes
0
points
49
downloads

Publisher

verified publisherhasna.ro

Weekly Downloads

Provides a subset of async operations on top of sqlite3 Database class.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, sqlite3

More

Packages that depend on sqlite3_async