Learn how to generate and retrieve the Android Studio SHA key required for integrating various services like Firebase, Google Maps, and more into your Flutter apps. This comprehensive guide provides easy-to-follow steps and tips to ensure a smooth setup process for your development projects. Explore the essential role of SHA keys in securing Flutter applications. Its mandatory for Flutter app…
How to add splash screen with animated logo in flutter
Here I try to understand, how to add a splash screen with animated logo in flutter. here we will use getx as a state management. first implement your GetxController with GetSingleTickerProviderStateMixin to define the animation controller. Define the AnimationController inside your controller class Now define the some observable variables to reflect the changes. Now we can use AnimatedPositioned widget to…
Flutter Ripple Animation
This will add a line like this to your package’s pubspec.yaml: import it in your Dart code, you can use: Now follow the below code for put ripple animation in your App Output : Ripple Animations
How to trim a container in a flutter
The simplest way to do this is by using an overlap and ClipRect. The OverFlowBox allows the circle to draw outside the bounds of its parent, and then the ClipRect cuts it back to the edge. Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Colors.white, title:Text(‘Mask a container’,style:TextStyle(color:Colors.black)), centerTitle: true, ), body: Center( child: Container( decoration: BoxDecoration( borderRadius: BorderRadius.circular(10),…
How to Add Slash Automatically While Typing Date in Text-box
In this Blog, we give you a trick to add slash(/) automatically while user typing date in text element. you can do it with the help of simple Jquery events keyup and keydown. Date Format: 09/09/2001 We have this blog is helpful for you. please leave comment if you have any queries. Thank you):