![]() |
VOOZH | about |
In Flutter, the skeleton_text library is used to easily implement skeleton text loading animation. Its main application in a flutter app is to assure its users that the servers are working but running slow, but the content will eventually load. It also enhances the User Interface if the user connection is slow too.
in this article, we will be looking into the process of implementing the skeleton text to a flutter application by building a simple flutter app.
Add the skeleton_text dependency to the dependencies section of the pubspec.yaml file as shown below:
skeleton_text: ^3.0.1Now click on pub get button in android studio or visual studio code or run the below command in terminal.
flutter pub getUse the below code to import the skeleton_text dependency to the main.dart file:
import 'package:skeleton_text/skeleton_text.dart';To give a Flutter application a simple structure with an appbar and a body, extend a StatelessWidget by forming a class as shown below:
Make use of the SkeletonAnimation method provided by the skeleton_text package to show skeleton text for a list object as shown below:
To know more about container in flutter refer this article: Container class in Flutter
Complete Source Code (main.dart):
Output: