Sketchware App Tutorial: Adding a Stylish Loading Animation

 



Sketchware App Tutorial: Adding a Stylish Loading Animation!


Learn how to create an awesome loading animation in Sketchware App! This step-by-step tutorial will show you how to add a professional touch to your app. Perfect for beginners and intermediate users. Don't miss out on this must-watch tutorial! #Sketchware #LoadingAnimation #AppDevelopment"

Codes 

///For Load data from Firebase
//Make sure change the RecyclerView I'd instead of new_updates & Activity Name as you want! (Change in every code)

new_updates.setLayoutManager(new LinearLayoutManager(HomeActivity.this));

///For Loading animation (Recyclerview)

1. Add this code through source code block

new_updates.addOnScrollListener(new RecyclerView.OnScrollListener() {

    @Override

 public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) {

        super.onScrolled(recyclerView, dx, dy);

                if (! recyclerView.canScrollVertically(1))

                {

Parcelable state =


new_updates.getLayoutManager().onSaveInstanceState();

2. more block which showed in picture

3. Add this code on last 

new_updates.getLayoutManager().onRestoreInstanceState(state);

} } });

4. Done


Lottie animation link

Saqsh79 Store on Sketchhub

Diond Store

Thanks 😊


Post a Comment

1 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.