lining_drawer 0.0.1 copy "lining_drawer: ^0.0.1" to clipboard
lining_drawer: ^0.0.1 copied to clipboard

A customized drawer for your flutter app

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:lining_drawer/lining_drawer.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const HomePage(),
    );
  }
}

class HomePage extends StatefulWidget {
  const HomePage({Key? key}) : super(key: key);

  @override
  _HomePageState createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
  bool isRTL = false;
  final LiningDrawerController _controller = LiningDrawerController();

  @override
  Widget build(BuildContext context) {
    return LiningDrawer(
      direction: isRTL
          ? DrawerDirection.fromRightToLeft
          : DrawerDirection.fromLeftToRight,
      controller: _controller,
      drawer: SafeArea(
        child: Column(
          children: [
            Padding(
              padding: const EdgeInsets.all(10.0),
              child: Row(
                mainAxisAlignment: MainAxisAlignment.spaceBetween,
                children: [
                  const Text(
                    "NETFLIX",
                    style: TextStyle(
                      color: Colors.red,
                      fontSize: 35.0,
                      fontWeight: FontWeight.bold,
                    ),
                  ),
                  IconButton(
                    onPressed: () {
                      _controller.toggleDrawer();
                    },
                    icon: const Icon(
                      Icons.close,
                      color: Colors.black26,
                    ),
                  )
                ],
              ),
            ),
          ],
        ),
      ),
      child: Scaffold(
        appBar: AppBar(
          systemOverlayStyle: const SystemUiOverlayStyle(
            statusBarColor: Colors.transparent,
            statusBarIconBrightness: Brightness.dark,
          ),
          leading: IconButton(
            onPressed: () {
              _controller.toggleDrawer();
            },
            icon: const Icon(Icons.menu),
          ),
        ),
        body: Center(
          child: Column(
            children: [
              SwitchListTile(
                  title: const Text("From Right to Left"),
                  value: isRTL,
                  onChanged: (_value) {
                    setState(() {
                      isRTL = _value;
                    });
                  })
            ],
          ),
        ),
      ),
    );
  }
}
6
likes
130
pub points
10%
popularity

Publisher

verified publisheriheb.tech

A customized drawer for your flutter app

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on lining_drawer