Skip to content

Instantly share code, notes, and snippets.

@YasuoFromDeadScream
Created April 12, 2021 23:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YasuoFromDeadScream/4a7be4584ec6b5525670a2201bfe298a to your computer and use it in GitHub Desktop.
Save YasuoFromDeadScream/4a7be4584ec6b5525670a2201bfe298a to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class BottomNavigationDemo extends StatefulWidget {
const BottomNavigationDemo({
Key key,
@required this.callback,
}) : super(key: key);
final void Function(int index) callback;
@override
BottomNavigationDemoState createState() => BottomNavigationDemoState();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment