flutter_breadcrumb 1.0.0 copy "flutter_breadcrumb: ^1.0.0" to clipboard
flutter_breadcrumb: ^1.0.0 copied to clipboard

Flutter Widget that can easily create Breadcrumb in Flutter.

example/lib/main.dart

import 'package:example/res/res.dart';
import 'package:example/screen/home.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: ExampleStrings.breadcrumb,
      theme: ThemeData(
        primarySwatch: ExampleColors.colorSwatch,
        accentColor: ExampleColors.accent,
        backgroundColor: ExampleColors.background,
        scaffoldBackgroundColor: ExampleColors.background,
        buttonTheme: ButtonThemeData(
          minWidth: 40,
          height: 40,
          buttonColor: ExampleColors.primary,
          splashColor: ExampleColors.accent,
          shape: RoundedRectangleBorder(
            borderRadius: BorderRadius.circular(4),
          ),
          padding: EdgeInsets.symmetric(horizontal: 8, vertical: 8),
          textTheme: ButtonTextTheme.normal,
          colorScheme: ColorScheme.dark(),
        ),
        textTheme: TextTheme(
          button: TextStyle(fontSize: 16, fontWeight: FontWeight.bold),
        ),
      ),
      home: Home(),
    );
  }
}
109
likes
150
pub points
97%
popularity

Publisher

verified publisherpayamzahedi.com

Flutter Widget that can easily create Breadcrumb in Flutter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, pedantic

More

Packages that depend on flutter_breadcrumb