fluent_environment 0.1.1 copy "fluent_environment: ^0.1.1" to clipboard
fluent_environment: ^0.1.1 copied to clipboard

Package that provides a way to register your environment globally and display it.

fluent_environment #

Package that provides a way to register your environment and display it

Getting Started #

Add dependencies #

fluent_environment: ^0.1.1

Define environment #

class AppEnvironment extends Environment {
    
    @override
    final String name = "Development";

    @override
    final Color color = Colors.blue;

    @override
    Map<String, String> get values => {
        'url': const String.fromEnvironment('URL'),
    };

    @override
    EnvironemntType get type => EnvironemntType.dev;
}

Build module #

void main() async {
  await Fluent.build([
    EnvironmentModule(
      environment: AppEnvironment(),
    ),
  ]);

  runApp(const App());
}

Use it #

class App extends StatelessWidget {
    const App({super.key});

    @override
    Widget build(BuildContext context) {
        // Return the current environment
        final environment = FLuent.get<EnvironmentApi>().environment;
        
        return MaterialApp(
            title: 'Fluent Environment Demo',
            // Wrap child widget with environment banner to display the current environment
            builder: (context, child) => EnvironmentBanner(child: child!),
            home: Scaffold(
                body: Center(
                    child: Text("Environment: ${environment.type.description}"),
                ),
            ),
        );
    }
}

Example #

0
likes
160
pub points
34%
popularity

Publisher

unverified uploader

Package that provides a way to register your environment globally and display it.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

fluent_environment_api, fluent_sdk, flutter

More

Packages that depend on fluent_environment