flutter_slider_drawer 3.0.2
flutter_slider_drawer: ^3.0.2 copied to clipboard
A Flutter package with custom implementation of the Slider Drawer Menu
import 'package:example/home/home_page.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
MyAppState createState() => MyAppState();
}
class MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
body: HomePage(),
),
);
}
}
copied to clipboard