All Projects → aballano → Checkview

aballano / Checkview

Licence: apache-2.0
An animated toggling Plus/Check button for Android

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Checkview

React Native Popover View
A well-tested, adaptable, lightweight <Popover> component for react-native
Stars: ✭ 191 (+241.07%)
Mutual labels:  view, component
Html
HTML helper library
Stars: ✭ 8 (-85.71%)
Mutual labels:  view, component
Gomponents
Declarative view components in Go, that can render to HTML5.
Stars: ✭ 49 (-12.5%)
Mutual labels:  view, component
Lovelydialog
This library is a set of simple wrapper classes that are aimed to help you easily create fancy material dialogs.
Stars: ✭ 1,043 (+1762.5%)
Mutual labels:  view
Pannellum React
React Component for Pannellum (open source panorama viewer for the web)
Stars: ✭ 48 (-14.29%)
Mutual labels:  component
Faboptions
A multi-functional FAB component with customizable options
Stars: ✭ 1,060 (+1792.86%)
Mutual labels:  component
Uxcore Table
Table Component based on React
Stars: ✭ 55 (-1.79%)
Mutual labels:  component
Watermark
watermark component
Stars: ✭ 47 (-16.07%)
Mutual labels:  component
Mindo
Generate mind maps easily in your android app.
Stars: ✭ 52 (-7.14%)
Mutual labels:  view
React Native Hide Show Password Input
React-Native Hide Show Password InputText Component
Stars: ✭ 50 (-10.71%)
Mutual labels:  component
Http Foundation
The HttpFoundation component defines an object-oriented layer for the HTTP specification.
Stars: ✭ 8,068 (+14307.14%)
Mutual labels:  component
Fun
A library for android to animate expanding and collapsing views.
Stars: ✭ 48 (-14.29%)
Mutual labels:  view
Web Link
The WebLink component manages links between resources. It is particularly useful to advise clients to preload and prefetch documents through HTTP and HTTP/2 pushes.
Stars: ✭ 1,060 (+1792.86%)
Mutual labels:  component
Vue Svg Map
A set of Vue.js components to display an interactive SVG map
Stars: ✭ 48 (-14.29%)
Mutual labels:  component
Android Toy
不积跬步 无以至千里
Stars: ✭ 54 (-3.57%)
Mutual labels:  view
React Components
React components
Stars: ✭ 47 (-16.07%)
Mutual labels:  component
Tap water
【声明:未发布前,勿使用,勿star,预计2020年11月底发布】Flutter tab_bar组件,支持中间带加号按钮的TabBar,支持Lottie动画。iTeaTime(技术清谈)团队出品。Highly customizable tabBar and tabBarController for Flutter
Stars: ✭ 52 (-7.14%)
Mutual labels:  view
Vue Form Wizard
Vue.js 2 wizard
Stars: ✭ 1,053 (+1780.36%)
Mutual labels:  component
Cascade
A modern library for creating user interfaces.
Stars: ✭ 50 (-10.71%)
Mutual labels:  component
Toothyprogress
A polyline determinated ProgressBar written in Kotlin
Stars: ✭ 56 (+0%)
Mutual labels:  view

Check View Android Arsenal

Sample

Usage

Add a CheckView to your layout

    <com.zdvdev.checkview.CheckView
        android:id="@+id/checkView"
        android:layout_width="48dp"
        android:layout_height="48dp"
        app:cvlineColor="#ff00" />

// Note that you can define the color with lineColor

Toggle is done automatically by default, if you want to change that, just:

    checkView.setAutoToggle(false);

or by xml:

    app:cvautoToggle="false"

You can also set a state directly:

    checkView.plus();
    checkView.check();

Extra

Optionally supply an animation duration in milliseconds:

    checkView.check(0L);
    checkView.toggle(150L);
    checkView.plus(200L);

Or pass a custom stroke width:

    app:cvstrokeWidth="8dp"

Download

Easy as:

repositories {
    maven { url "https://jitpack.io" }
}

dependencies {
    compile 'com.github.Shyish:CheckView:1.X.X'
}

Based on

CrossView from Collin Flynn (cdflynn)

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].