Shimmer Animation
Step 1:
We cannot directly remove the time stamp from Shimmer Animation but using the intl.dart package we can easily filter the date stamp from time stamp. So open your flutter project’s pubspec.yaml in code
dependencies: flutter: sdk: flutter shimmer: ^1.1.1
flutter pub get
import 'package:flutter/material.dart'; import 'package:shimmer/shimmer.dart';
import 'package:flutter/material.dart'; import 'package:shimmer/shimmer.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, title: 'Shimmer', routes: { 'slide': (_) => SlideToUnlockPage(), }, theme: ThemeData( primarySwatch: Colors.blue, ), home: MyHomePage(), ); } } class MyHomePage extends StatefulWidget { @override _MyHomePageState createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Shimmer'), ), body: Column( children: [ ListTile( title: const Text('Loading List'), onTap: () => Navigator.of(context).pushNamed('loading'), ), ListTile( title: const Text('Slide To Unlock'), onTap: () => Navigator.of(context).pushNamed('slide'), ), ], ), ); } } class SlideToUnlockPage extends StatelessWidget { final List<String> days = <String>[ 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday' ]; final List<String> months = <String>[ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; @override Widget build(BuildContext context) { final DateTime time = DateTime.now(); final int hour = time.hour; final int minute = time.minute; final int day = time.weekday; final int month = time.month; final int dayInMonth = time.day; return Scaffold( body: Stack( fit: StackFit.expand, children: [ Image.asset( 'assets/download.jpg', fit: BoxFit.cover, ), Positioned( top: 48.0, right: 0.0, left: 0.0, child: Center( child: Column( children: <Widget>[ Text( '${hour < 10 ? '0$hour' : '$hour'}:${minute < 10 ? '0$minute' : '$minute'}', style: TextStyle( fontSize: 60.0, color: Colors.white, ), ), const Padding( padding: EdgeInsets.symmetric(vertical: 4.0), ), Text( '${days[day - 1]}, ${months[month - 1]} $dayInMonth', style: TextStyle(fontSize: 24.0, color: Colors.white), ) ], ), ), ), Positioned( bottom: 24.0, left: 0.0, right: 0.0, child: Center( child: Opacity( opacity: 0.8, child: Shimmer.fromColors( child: Row( mainAxisSize: MainAxisSize.min, children: <Widget>[ Image.asset( 'assets/chevron_right.png', height: 20.0, ), const Padding( padding: EdgeInsets.symmetric(horizontal: 4.0), ), const Text( 'Slide to unlock', style: TextStyle( fontSize: 28.0, ), ) ], ), baseColor: Colors.black54, highlightColor: Colors.white, loop: 3, ), ), )) ], ), ); } }