bottom_nav_speed_dial 1.0.1
bottom_nav_speed_dial: ^1.0.1 copied to clipboard
Bottom navigation + speed dial widget with customizable UI, overlays, and animations.
import 'package:flutter/material.dart';
import 'demo_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Bottom Nav Speed Dial Example',
home: DemoScreen(),
);
}
}