app_cloud_config 0.0.3
app_cloud_config: ^0.0.3 copied to clipboard
`app_cloud_config` is a cloud-based solution designed to enable dynamic theme changes for your Flutter app, even after it has been deployed to production.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add app_cloud_configThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
app_cloud_config: ^0.0.3Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:app_cloud_config/enums/cloud_theme_modes.dart';
import 'package:app_cloud_config/enums/cloud_widgets.dart';
import 'package:app_cloud_config/interfaces/cloud_theme_interface.dart';
import 'package:app_cloud_config/services/cloud_theme/cloud_theme.dart';
import 'package:app_cloud_config/services/cloud_theme/cloud_theme_helper.dart';
import 'package:app_cloud_config/services/cloud_theme/cloud_theme_manager.dart';
import 'package:app_cloud_config/services/cloud_widgets/cloud_widget.dart';