sql_engine 2.0.3
sql_engine: ^2.0.3 copied to clipboard
A thin yet powerful SQLite layer for Dart & Flutter.
import 'package:example/sql_engine_example.dart';
import 'package:flutter/material.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(
title: 'Sql Engine Example',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
),
home: const SqlEngineHomePage(),
);
}
}