mirror of
https://github.com/immich-app/immich.git
synced 2026-04-27 11:39:53 -04:00
11 lines
339 B
Dart
11 lines
339 B
Dart
import 'dart:convert';
|
|
|
|
import 'package:flutter/services.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
final immichLogoProvider = FutureProvider.autoDispose<Uint8List>((ref) async {
|
|
final json = await rootBundle.loadString('assets/immich-logo.json');
|
|
final j = jsonDecode(json);
|
|
return base64Decode(j['content']);
|
|
});
|