Skip to content

Commit 0b75399

Browse files
Update Readme.md
1 parent cd4e273 commit 0b75399

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ startActivity(SettingIntents.from(this).applicationSetting().build());
5858
```Java
5959
BrowserIntents.from(this).openBrowser().show();
6060
```
61-
* ### CalculatorIntents(TODO)
61+
* ### CalculatorIntents
6262
```Java
6363
openCalculator()
6464
```
@@ -67,8 +67,31 @@ startActivity(SettingIntents.from(this).applicationSetting().build());
6767
CalculatorIntents.from(this).openCalculator().show();
6868
```
6969
* ### CalendarIntents
70+
```Java
71+
openCalendar()
72+
createEvent(String title, String description)
73+
```
74+
Example
75+
```Java
76+
CalendarIntents.from(this).openCalendar().show();
77+
```
7078
* ### CameraIntents
7179
* ### ContactIntents
80+
```Java
81+
openContacts()
82+
viewContact(String name)
83+
editContact(String name)
84+
editContact(String name, String newEmail)
85+
insertContact(String name, String phone, String email, String company, String job, String notes)
86+
pickContact()
87+
```
88+
Example
89+
```Java
90+
ContactIntents.from(this).openContacts().show();
91+
ContactIntents.from(this).viewContact("Ahmad").show();
92+
ContactIntents.from(this).insertContact("Emiley", "0913234235", "", "", "", "").show();
93+
ContactIntents.from(this).editContact("Ahmad").show();
94+
```
7295
* ### EmailIntents
7396
* ### EventIntents
7497
* ### FileIntents

0 commit comments

Comments
 (0)