All Projects → shagiz → Almostmaterialdatepicker

shagiz / Almostmaterialdatepicker

Date picker made in material design style with some additional spinners

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Almostmaterialdatepicker

Md2
Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Collapse, Colorpicker, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.
Stars: ✭ 389 (+418.67%)
Mutual labels:  material-design, datepicker
Primedatepicker
PrimeDatePicker is a tool that provides picking a single day, multiple days, and a range of days.
Stars: ✭ 292 (+289.33%)
Mutual labels:  material-design, datepicker
React Native Paper Dates
Smooth and fast cross platform Material Design date and time picker for React Native Paper
Stars: ✭ 173 (+130.67%)
Mutual labels:  material-design, datepicker
Material Vue Daterange Picker
a date-range-picker follows the Material Design spec powered by vue.js (alpha)
Stars: ✭ 64 (-14.67%)
Mutual labels:  material-design, datepicker
Snackbarbuilder
[ARCHIVED] Builder pattern for support library Snackbars, that makes them easier to customise and use
Stars: ✭ 71 (-5.33%)
Mutual labels:  material-design
Materialdesign
Material Design 控件集合。ConstraintLayout、NestedScrollView、Toolbar、TabLayout、TextInputLayout。。。
Stars: ✭ 68 (-9.33%)
Mutual labels:  material-design
Horizontal Calendar
A material horizontal calendar view for Android based on RecyclerView
Stars: ✭ 1,155 (+1440%)
Mutual labels:  datepicker
Android Material Design In Practice
A project to demonstrate the latest material design principles with simple examples. It has additional examples on how to easily scale texts on different screen sizes without extra effort.
Stars: ✭ 67 (-10.67%)
Mutual labels:  material-design
Bottombar
(Deprecated) A custom view component that mimics the new Material Design Bottom Navigation pattern.
Stars: ✭ 8,459 (+11178.67%)
Mutual labels:  material-design
Material Components Web Elm
Material Components for Elm
Stars: ✭ 73 (-2.67%)
Mutual labels:  material-design
Retromusicplayer
Best material design music player for Android
Stars: ✭ 1,171 (+1461.33%)
Mutual labels:  material-design
Mahapps.metro.iconpacks
Awesome icon packs for WPF and UWP in one library
Stars: ✭ 1,157 (+1442.67%)
Mutual labels:  material-design
Hexoplusplus
🎁基于CloudFlareWorker的无服务器Hexo后端,目标:解决静态博客所有痛点[文章编辑、图片上传、博主活跃信息统计、博主说说、Twikoo加强版、阅读量统计【尚未完成】]
Stars: ✭ 72 (-4%)
Mutual labels:  material-design
Vue2 Datepicker
A datepicker / datetimepicker component for Vue2
Stars: ✭ 1,154 (+1438.67%)
Mutual labels:  datepicker
Laravel Vuetify Spa
Laravel-Vue SPA starter project template with Vuetify frontend.
Stars: ✭ 73 (-2.67%)
Mutual labels:  material-design
Propeller
Propeller - Develop more, Code less. Propeller is a front-end responsive framework based on Google's Material Design Standards & Bootstrap.
Stars: ✭ 1,150 (+1433.33%)
Mutual labels:  material-design
Material Ui Layout
Declarative layout for Material UI
Stars: ✭ 71 (-5.33%)
Mutual labels:  material-design
Materialchipview
Material Chip view. Can be used as tags for categories, contacts or creating text clouds
Stars: ✭ 1,181 (+1474.67%)
Mutual labels:  material-design
Floatingactionbuttonspeeddial
A Floating Action Button Speed Dial implementation for Android that follows the Material Design specification (https://material.io/components/buttons-floating-action-button#types-of-transitions)
Stars: ✭ 1,164 (+1452%)
Mutual labels:  material-design
Material Message Box
A WPF Message Box implementing material design
Stars: ✭ 69 (-8%)
Mutual labels:  material-design

AlmostMaterialDatepicker

Date picker made in material design style with some additional spinner for more convenient use.

screenshot screenshot screenshot

Install

To add this library to your project, you must add the JitPack repo to your root build.gradle file...

allprojects {
 repositories {
    ...
    jcenter()
 }
}

Then include this in your dependencies block

implementation('com.shagi:material-datepicker:1.3') {
        exclude group: 'com.android.support'
    }

Usage

   val dialog = DatePickerFragmentDialog.newInstance({ view, year, monthOfYear, dayOfMonth ->
                Toast.makeText(applicationContext,
                        "year $year month $monthOfYear day $dayOfMonth",
                        Toast.LENGTH_SHORT).show()
            }, 2017, 11, 4)

            dialog.show(supportFragmentManager, "tag")

            /* Possible params
                dialog.setMaxDate(System.currentTimeMillis())
                dialog.setMinDate(System.currentTimeMillis())
                dialog.setYearRange(2000, 2010)
                dialog.setCancelColor(Color.MAGENTA)
                dialog.setOkColor(Color.MAGENTA)
                dialog.setAccentColor(Color.MAGENTA)
                dialog.setCancelText("Out")
                dialog.setOkText("Fine")
            */
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].