GitXplorerGitXplorer
m

swirl

public
755 stars
68 forks
4 issues

Commits

List of commits on branch master.
Verified
bba2e01a10bf85c0bce990eb7b0d2098586c35bf

Delete .travis.yml

mmattprecious committed 3 years ago
Unverified
e9fdb7286ff1920ff36fcaf01efbdafc63cc86bd

Prepare for next development version.

mmattprecious committed 4 years ago
Unverified
a9c18e9f63439dca67e182e750c4205900e16b60

1.3.0

mmattprecious committed 4 years ago
Verified
e933b63454dc9b155f416a9014ee4526ff6a4e1e

Merge pull request #16 from pandelisgreen13/master

mmattprecious committed 5 years ago
Unverified
0cbefd10918d1f8d77463cd85d7225aa375eb50e

update travis license

committed 5 years ago
Unverified
0487cf4e089748552bd017aa82cf101accd04c8e

AndroidX migration and update gradle to latest version

committed 5 years ago

README

The README file for this repository.

Swirl

Android's animated fingerprint icon provided in a simple, standalone library.

Usage

Since Swirl uses animated vector drawables, default colors cannot be provided and must be specified in your theme.

<style name="Theme.YourApp" parent="@android:style/Theme.Material.Light">
  <item name="swirl_ridgeColor">?android:attr/textColorSecondary</item>
  <item name="swirl_errorColor">?android:attr/colorAccent</item>
</style>

Then, you may include SwirlView anywhere in your app.

<com.mattprecious.swirl.SwirlView
    android:layout_width="60dp"
    android:layout_height="60dp"
    />

Note that this example specifies a width and height and does not use wrap_content. Since the drawables are vectors, there isn't an appropriate size to default to so you must specify one.

Switch between icons by calling setState() or by using the app:swirl_state attribute.

See the provided sample for a complete implementation.

Download

Gradle:

implementation 'com.mattprecious.swirl:swirl:1.3.0'

License

Copyright 2016 Matthew Precious

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.