contextualactionbar 3.0.2 copy "contextualactionbar: ^3.0.2" to clipboard
contextualactionbar: ^3.0.2 copied to clipboard

A Contextual Action Bar(CAB) workaround for flutter. CAB is a top app bar that replace the app app bar and provide contextual actions to selected items

example/lib/main.dart

import 'package:flutter/material.dart';

import 'whatsapp.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Contextual Action Bar Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(primarySwatch: Colors.teal),
      // for Scaffold.of(context)
      home: Scaffold(body: WhatsApp()),
//        home: Scaffold(
//          body: StreamBuilder<PermissionStatus>(
//              stream: (StoragePermissionService()..requestPermission())
//                  .storagePermission,
//              builder: (context, snapshot) {
//                if (snapshot.hasData && snapshot.data.isGranted) {
//                  return StatusSaver();
//                }
//                return Container(
//                  alignment: FractionalOffset.center,
//                  child: const CircularProgressIndicator(),
//                );
//              }),
//        )
    );
  }
}
63
likes
90
pub points
61%
popularity

Publisher

unverified uploader

A Contextual Action Bar(CAB) workaround for flutter. CAB is a top app bar that replace the app app bar and provide contextual actions to selected items

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, provider

More

Packages that depend on contextualactionbar