SlimyCard Animated In Flutter :
This flutter tutorial post is slimy card animation In Flutter.
dependencies:
slimy_card:
Screenshot :

Screenshot 2:

main.dart
import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:slimy_card/slimy_card.dart'; void main() { //Don't worry about these codes here, as they are not relevant for this example. SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle( statusBarColor: Colors.transparent, statusBarIconBrightness: Brightness.dark, systemNavigationBarColor: Colors.white, systemNavigationBarIconBrightness: Brightness.dark, systemNavigationBarDividerColor: Colors.transparent, )); SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]); runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, theme: ThemeData( scaffoldBackgroundColor: Colors.white, fontFamily: 'Poppins', ), home: HomePage(), ); } } class HomePage extends StatefulWidget { @override _HomePageState createState() => _HomePageState(); } class _HomePageState extends State<HomePage> { @override Widget build(BuildContext context) { return Scaffold( body: StreamBuilder( // This streamBuilder reads the real-time status of SlimyCard. initialData: false, stream: slimyCard.stream, //Stream of SlimyCard builder: ((BuildContext context, AsyncSnapshot snapshot) { return ListView(padding: EdgeInsets.zero, children: <Widget>[ SizedBox(height: 100), SlimyCard( slimeEnabled: false, color: const Color(0xff5858FF), topCardWidget: topCardWidget((snapshot.data) ? 'Flutter' : 'Flutter tutorial world best'), bottomCardWidget: bottomCardWidget(), ) ]); }))); } // This widget will be passed as Top Card's Widget. Widget topCardWidget(String data) { return Column( mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[ Container( child: Text(data, style: TextStyle( color: Colors.white.withOpacity(0.8), fontSize: 20, fontWeight: FontWeight.bold))), SizedBox(height: 15), Text( 'Message', style: TextStyle(color: Colors.white, fontSize: 15), ), SizedBox(height: 10), Text( 'Share your friends, easy to learn flutter!', style: TextStyle( color: Colors.white.withOpacity(0.8), fontSize: 12, fontWeight: FontWeight.w500), ), SizedBox(height: 10), ]); } // This widget will be passed as Bottom Card's Widget. Widget bottomCardWidget() { return Text( 'www.fluttertutorial.in', style: TextStyle( color: Colors.white, fontSize: 12, fontWeight: FontWeight.w500, ), textAlign: TextAlign.center, ); } }
The flutter tutorial is a website that bring you the latest and amazing resources of code. All the languages codes are included in this website. The languages like flutter, android, java,kotlin etc.with the help of this languages any user can develop the beautiful application
For more information about Flutter. visit www.fluttertutorial.in