DayNightSwitch

Additional

Language
Java
Version
1.5 (Feb 6, 2021)
Created
Jul 16, 2017
Updated
Nov 16, 2021 (Retired)
Owner
Mohsen Fallahi (Mahfa)
Contributors
Mohsen Fallahi (Mahfa)
Quentin (vfishv)
2
Activity
Badge
Generate
Download
Source code

DayNightSwitch

A cute day night switch for android

Inspired from this gif : https://www.uplabs.com/posts/on-off-switch-7af29fd7-131a-4aac-b142-63579710f52f

How to install

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

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

Step 2. Add the dependency

 dependencies {
         compile 'com.github.Mahfa:DayNightSwitch:1.5'
 }

Usage

just add it to your xml layout file

    <com.mahfa.dnswitch.DayNightSwitch
        android:id="@+id/day_night_switch"
        android:layout_width="76dp"
        android:layout_height="40dp"
        android:layout_gravity="center"/>