Add the ability to open attachments in their own view

This commit is contained in:
Henry Hiles 2026-01-13 14:10:17 -05:00
commit dd724b04b1
No known key found for this signature in database
5 changed files with 63 additions and 5 deletions

View file

@ -0,0 +1,14 @@
import "package:cross_cache/cross_cache.dart";
import "package:flutter_riverpod/flutter_riverpod.dart";
class CrossCacheController extends Notifier<CrossCache> {
static const String spaceKey = "space";
static const String roomKey = "room";
@override
CrossCache build() => CrossCache();
static final provider = NotifierProvider<CrossCacheController, CrossCache>(
CrossCacheController.new,
);
}