virnavi_isar_e2m 0.0.1 copy "virnavi_isar_e2m: ^0.0.1" to clipboard
virnavi_isar_e2m: ^0.0.1 copied to clipboard

A generic Isar DAO wrapper** that bridges the gap between Isar entities and domain models, streamlining NoSQL database interactions in Flutter applications.

example/lib/main.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: 'Virnavi Isar E2M',

      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text('Virnavi Isar E2M'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          spacing: 20,
          children: <Widget>[],
        ),
      ),
      // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}
1
likes
150
points
51
downloads

Publisher

verified publishervirnavi.com

Weekly Downloads

A generic Isar DAO wrapper** that bridges the gap between Isar entities and domain models, streamlining NoSQL database interactions in Flutter applications.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, isar_community, isar_community_flutter_libs, virnavi_common_sdk

More

Packages that depend on virnavi_isar_e2m