diff --git a/README.es-ES.md b/README.es-ES.md new file mode 100644 index 0000000..f71889f --- /dev/null +++ b/README.es-ES.md @@ -0,0 +1,118 @@ +# Circle Nav Bar + +![](https://raw.githubusercontent.com/111coding/circle_nav_bar/master/doc/animation.gif) + +## Ejemplo de estilo: + +- `./example` + + + + + + + + + + + + + +
negro sin paddingpadding con gradiente
+ +- `./example_two` + + + + + + + + + + + + + + + +
Niveles e Iconossolo Iconospadding con Niveles e iconos
+ +## Cómo usar + +```yaml +dependencies: + circle_nav_bar: ^latest_version +``` + +```dart +import 'package:circle_nav_bar/circle_nav_bar.dart'; + +Scaffold( + bottomNavigationBar: CircleNavBar( + activeIcons: const [ + Icon(Icons.person, color: Colors.deepPurple), + Icon(Icons.home, color: Colors.deepPurple), + Icon(Icons.favorite, color: Colors.deepPurple), + ], + inactiveIcons: const [ + Text("My"), + Text("Home"), + Text("Like"), + ], + color: Colors.white, + circleColor: Colors.white, + height: 60, + circleWidth: 60, + initIndex: 1, + onChanged: (v) { + // TODO + }, + // tabCurve: , + padding: const EdgeInsets.only(left: 16, right: 16, bottom: 20), + cornerRadius: const BorderRadius.only( + topLeft: Radius.circular(8), + topRight: Radius.circular(8), + bottomRight: Radius.circular(24), + bottomLeft: Radius.circular(24), + ), + shadowColor: Colors.deepPurple, + circleShadowColor: Colors.deepPurple, + elevation: 10, + gradient: LinearGradient( + begin: Alignment.topRight, + end: Alignment.bottomLeft, + colors: [ Colors.blue, Colors.red ], + ), + circleGradient: LinearGradient( + begin: Alignment.topRight, + end: Alignment.bottomLeft, + colors: [ Colors.blue, Colors.red ], + ), + ), + ... +``` + +![](https://raw.githubusercontent.com/111coding/circle_nav_bar/master/doc/value.png) + +![](https://raw.githubusercontent.com/111coding/circle_nav_bar/master/doc/value-05.png) + +![](https://raw.githubusercontent.com/111coding/circle_nav_bar/master/doc/bottom-nev-with-levels.png) + +![](https://raw.githubusercontent.com/111coding/circle_nav_bar/master/doc/bottom-nev.png) + +![](https://raw.githubusercontent.com/111coding/circle_nav_bar/master/doc/floating-bottom-navbar.png) + +## Contribuidores + + + + + + + + + + + +
Jiwon Lee
Jiwon Lee
Rupinderjeet Singh Hans
Rupinderjeet Singh Hans
Md Ashraf Ullah
Md Ashraf Ullah
mark-kkk
mark-kkk
kzrnm
kzrnm