scaffold_messenger_proxy 0.0.3 copy "scaffold_messenger_proxy: ^0.0.3" to clipboard
scaffold_messenger_proxy: ^0.0.3 copied to clipboard

inject a widget into the widget tree that listens to a stream with a config and maps it to a SnackBar that is displayed - which enables to control the displaying of Snackbars from outside the widget tree

example/main.dart

import 'dart:async';

import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:scaffold_messenger_proxy/scaffold_messenger_proxy.dart';

void main() {
  runApp(App());
}

class App extends StatelessWidget {
  // ignore: close_sinks
  final _streamController = StreamController<String>();

  @override
  Widget build(BuildContext context) {
    return ScaffoldMessengerProxy<String>(
      stream: _streamController.stream,
      snackBarBuilder: (context, _) {
        return SynchronousFuture(
          SnackBar(
            content: Text("I am from a stream"),
          ),
        );
      },
      child: Scaffold(
        body: Center(
          child: Text("EXAMPLE"),
        ),
      ),
    );
  }
}
1
likes
110
pub points
0%
popularity

Publisher

verified publisherquantumgray.tech

inject a widget into the widget tree that listens to a stream with a config and maps it to a SnackBar that is displayed - which enables to control the displaying of Snackbars from outside the widget tree

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on scaffold_messenger_proxy