Use gal_linux in the example

pull/1564/head
Ellet 1 year ago
parent 55092bbc3c
commit 9153fcacb4
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 6
      example/lib/main.dart
  2. 5
      example/pubspec.yaml

@ -1,4 +1,4 @@
import 'package:flutter/foundation.dart' show kIsWeb;
import 'package:flutter/foundation.dart' show defaultTargetPlatform, kIsWeb;
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_localizations/flutter_localizations.dart'
@ -8,6 +8,7 @@ import 'package:flutter_localizations/flutter_localizations.dart'
GlobalWidgetsLocalizations;
import 'package:flutter_quill/flutter_quill.dart' show Document;
import 'package:flutter_quill/translations.dart' show FlutterQuillLocalizations;
import 'package:gal_linux/gal_linux.dart';
import 'package:hydrated_bloc/hydrated_bloc.dart'
show HydratedBloc, HydratedStorage;
import 'package:path_provider/path_provider.dart'
@ -29,6 +30,9 @@ void main() async {
? HydratedStorage.webStorageDirectory
: await getApplicationDocumentsDirectory(),
);
if (defaultTargetPlatform == TargetPlatform.linux && !kIsWeb) {
GalPluginLinux.registerWith();
}
runApp(const MyApp());
}

@ -24,6 +24,11 @@ dependencies:
cross_file: ^0.3.3+6
cached_network_image: ^3.3.0
gal_linux:
git:
url: https://github.com/freshtechtips/gal-linux.git
ref: main
# Bloc libraries
bloc: ^8.1.2
flutter_bloc: ^8.1.3

Loading…
Cancel
Save