You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
353 B
14 lines
353 B
import 'package:flutter/material.dart';
|
|
import 'package:hive/hive.dart';
|
|
|
|
import '../model/hive/ContentHive.dart';
|
|
|
|
class ContentListModel extends ChangeNotifier{
|
|
late Box _regionBox;
|
|
List<ContentHive> _regions=[];
|
|
List<ContentHive> get regions=>_regions;
|
|
Future init() async{}
|
|
// _regionBox = await Hive.openBox("ContentListBox");
|
|
// var
|
|
|
|
} |