slidable_bar 1.0.1 copy "slidable_bar: ^1.0.1" to clipboard
slidable_bar: ^1.0.1 copied to clipboard

outdated

A Flutter package to show SideBar and hide it and custimaze your clicker.

example/lib/main.dart

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:slidable_bar/slidable_bar.dart';

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

class App extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Example(),
    );
  }
}

class Example extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('slidable bar example'),
      ),
      body: SlidableBar(
        width: 60,
        frontColor: Colors.green,
        backgroundColor: Colors.white,
        barChildren: [
          FlutterLogo(size: 50,),
          FlutterLogo(size: 50,),
          FlutterLogo(size: 50,),
          FlutterLogo(size: 50,),
        ],
        child: Container(
          color: Colors.grey.shade200,
        ),
      ),
    );
  }
}
45
likes
0
points
84
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package to show SideBar and hide it and custimaze your clicker.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on slidable_bar