This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Import the splash.dart into your main app and use like: | |
| // ex: Splash(iconData:Icons.restaurant, label: 'MY APP',); | |
| import 'package:flutter/material.dart'; | |
| class Splash extends StatefulWidget { | |
| final IconData iconData; | |
| final String label; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using Android.Support.Design.Internal; | |
| using Android.Support.Design.Widget; | |
| namespace MyProject.App.Droid.Helpers | |
| { | |
| public static class AndroidHelpers | |
| { | |
| public static void SetShiftMode(this BottomNavigationView bottomNavigationView, bool enableShiftMode, bool enableItemShiftMode) | |
| { |