Skip to content

A flutter plugin getting android and iOS native env variables

License

Notifications You must be signed in to change notification settings

OwnWeb/flutter_native_env

Repository files navigation

flutter_native_env

A flutter plugin getting android and iOS native env variables by calling ProcessInfo.processInfo.environment[] on iOS and System.getProperty() on android.

It can be used to easily fetch environment variables added during build or no-code testing, like flutter_is_waldo.

Usage

Have a look on installation page.

import 'dart:async';
import 'package:flutter_native_env/flutter_native_env.dart';

String platformArch = await FlutterNativeEnv.getNativeEnv('os.arch', 'unknown', iosPropertyName: 'SIMULATOR_ARCHS');  // e.g. "x86_64"

You will find links to the API docs on the pub API reference page.

About

A flutter plugin getting android and iOS native env variables

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published