remote_config_view 0.0.1 copy "remote_config_view: ^0.0.1" to clipboard
remote_config_view: ^0.0.1 copied to clipboard

A flutter plugin that allow you to create text views handled from firebase remote config.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:in_app_purchase_utils/in_app_purchase_utils/in_app_purchase_service.dart';
import 'package:remote_config_view/remote_config_utils/remote_config_utils.dart';

import 'my_application.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await RemoteConfigUtils().initialize(
      firebaseAPIKey: "<firebaseAPIKey>",
      firebaseAppID: "<firebaseAppID>",
      firebaseMessengerSenderID: "<firebaseMessengerSenderID>",
      firebaseProjectID: "<firebaseProjectID>");

  await InAppPurchaseService.instance.initialize(
      validationAPI: "<receipt_validation_API>",
      secretKey: "<secret_key>");
  await InAppPurchaseService.instance.fetchProducts([
    "<product_id>",
  ]);

  runApp(const MyApplication());
}
1
likes
140
points
199
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter plugin that allow you to create text views handled from firebase remote config.

Repository (GitLab)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

firebase_analytics, firebase_core, firebase_remote_config, flutter, in_app_purchase_utils, plugin_platform_interface

More

Packages that depend on remote_config_view