Skip to content

Commit 8913f23

Browse files
author
afreakyelf
committed
Merge remote-tracking branch 'origin/master'
2 parents 0ca438c + 41037d5 commit 8913f23

3 files changed

Lines changed: 21 additions & 7 deletions

File tree

.github/FUNDING.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
custom: https://www.paypal.me/afreakyelf

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align="center">HorizontalCalendarLibrary</h1>
1+
<h1 align="center">Android Horizontal Calendar Library</h1>
22
<p align="center">
33
A custom Horizontal Calendar with multiple customization options.
44
<br>
@@ -10,7 +10,7 @@ A custom Horizontal Calendar with multiple customization options.
1010

1111

1212
## How to integrate into your app?
13-
Integrating the project is simple a refined all you need to do is follow the below steps
13+
Integrating the project is simple, all you need to do is follow the below steps
1414

1515
Step 1. Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:
1616

@@ -25,15 +25,14 @@ allprojects {
2525
Step 2. Add the dependency
2626
```java
2727
dependencies {
28-
implementation 'com.github.afreakyelf:HorizontalCalendarLibrary:<latest_version>'
28+
implementation 'com.github.afreakyelf:AndroidHorizontalCalendar:<latest_version>'
2929
}
3030
```
3131

3232
## How to use the library?
33-
Okay seems like you integrated the library in your project but **how do you use it**? Well its really easy just add the following to your xml design to show the calendar
33+
Okay seems like you have integrated the library in your project but **how do you use it**? Well its really easy just add the following to your xml design to show the calendar
3434

3535
```xml
36-
.....
3736
<com.example.horizontalcalendar.HorizontalCalender
3837
android:layout_width="match_parent"
3938
android:layout_height="wrap_content"
@@ -45,10 +44,13 @@ Okay seems like you integrated the library in your project but **how do you use
4544
app:showTodayIcon="true"
4645
app:unSelectedColor="#7485C9"
4746
/>
48-
.....
47+
```
48+
then initialize this in following way :
49+
```kotlin
50+
horizontal_calendar.initialize(this) // You will have to implement DateItemClickListener
4951
```
5052

51-
That's pretty much it and your all wrapped up.
53+
That's pretty much it and you're all wrapped up.
5254

5355
## Attributes
5456
| Attribute | Use |

sample1.png

17.8 KB
Loading

0 commit comments

Comments
 (0)