All Projects β†’ ishaan1995 β†’ Buttonprogressbar

ishaan1995 / Buttonprogressbar

Licence: apache-2.0
A Download Button ProgressBar, inspiration from Dribbble

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Buttonprogressbar

React Snakke
🐍 Reading position indicator for React
Stars: ✭ 306 (-38.31%)
Mutual labels:  progress-bar
Flutter ui challenge filter menu
My first Flutter UI challenge.
Stars: ✭ 335 (-32.46%)
Mutual labels:  dribbble
Avatarview
A circular Image View with a lot of perks. Including progress animation and highlight state with borders and gradient color.
Stars: ✭ 429 (-13.51%)
Mutual labels:  progress-bar
Jribbble
A JavaScript library for the Dribbble API
Stars: ✭ 310 (-37.5%)
Mutual labels:  dribbble
Tqdm
A Fast, Extensible Progress Bar for Python and CLI
Stars: ✭ 20,632 (+4059.68%)
Mutual labels:  progress-bar
Stateviews
Create & Show progress, data or error views, the easy way!
Stars: ✭ 367 (-26.01%)
Mutual labels:  progress-bar
Rsshub
🍰 Everything is RSSible
Stars: ✭ 18,111 (+3551.41%)
Mutual labels:  dribbble
Drrrible
Dribbble for iOS using ReactorKit
Stars: ✭ 487 (-1.81%)
Mutual labels:  dribbble
Npm Gif
Replace NPM install's progress bar with a GIF!
Stars: ✭ 332 (-33.06%)
Mutual labels:  progress-bar
Pb
Console progress bar for Rust
Stars: ✭ 402 (-18.95%)
Mutual labels:  progress-bar
Elasticprogressbar
Elastic Progress Bar Renew!
Stars: ✭ 314 (-36.69%)
Mutual labels:  progress-bar
Ng Http Loader
🍑 Smart angular HTTP interceptor - Intercepts automagically HTTP requests and shows a spinkit spinner / loader / progress bar
Stars: ✭ 327 (-34.07%)
Mutual labels:  progress-bar
Ng2 Slim Loading Bar
Angular 2 component shows slim loading bar at the top of the page.
Stars: ✭ 376 (-24.19%)
Mutual labels:  progress-bar
Qier Progress
πŸ’ƒ Look at me, I am a slim progress bar and very colorful / ζ”―ζŒε½©θ‰²ζˆ–ε•θ‰²ηš„ι‘Άιƒ¨θΏ›εΊ¦ζ‘
Stars: ✭ 307 (-38.1%)
Mutual labels:  progress-bar
Sequence Layout
A vertical sequence UI component for Android
Stars: ✭ 444 (-10.48%)
Mutual labels:  progress-bar
Rsup Progress
❀️ A simple progress bar with promises support
Stars: ✭ 290 (-41.53%)
Mutual labels:  progress-bar
Ngx Ui Loader
Multiple Loaders / spinners and Progress bar for Angular 5, 6, 7 and 8+
Stars: ✭ 368 (-25.81%)
Mutual labels:  progress-bar
Chat app
A flutter chat app built with firestore. It is clone of messenger.User can create stories,chat and search in real time.
Stars: ✭ 493 (-0.6%)
Mutual labels:  dribbble
Node.cli Progress
βŒ›οΈ easy to use progress-bar for command-line/terminal applications
Stars: ✭ 466 (-6.05%)
Mutual labels:  progress-bar
Flutter Examples
Personal collection of Flutter apps.
Stars: ✭ 394 (-20.56%)
Mutual labels:  dribbble

ButtonProgressBar

Android Arsenal

To get this Git project into your build:

1.Add this in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

2.Add this dependency in your app level build.gradle:

dependencies {
  compile 'com.github.ishaan1995:ButtonProgressBar:1.0'
}

Usage:

1.In your layout XML file:

<github.ishaan.buttonprogressbar.ButtonProgressBar
        android:id="@+id/bpb_main"
        app:text="Upload"
        app:textColor="@android:color/white"
        app:type="indeterminate"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

2.In your class file:

final ButtonProgressBar bar = (ButtonProgressBar) findViewById(R.id.bpb_main);
        bar.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                bar.startLoader();
                new Handler().postDelayed(new Runnable() {
                    @Override
                    public void run() {
                        bar.stopLoader();
                    }
                }, 5000);
            }
        });

Inspiration from Dribbble

iOS version available!

License

Copyright 2017 Ishaan Kakkar

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].