Skip to content

Commit 7c6b5cf

Browse files
author
Nur Fikri
committed
dark mode
2 parents 4613e04 + a170842 commit 7c6b5cf

File tree

6 files changed

+53
-3
lines changed

6 files changed

+53
-3
lines changed

.expo/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
> Why do I have a folder named ".expo" in my project?
2+
3+
The ".expo" folder is created when an Expo project is started using "expo start" command.
4+
5+
> What does the "packager-info.json" file contain?
6+
7+
The "packager-info.json" file contains port numbers and process PIDs that are used to serve the application to the mobile device/simulator.
8+
9+
> What does the "settings.json" file contain?
10+
11+
The "settings.json" file contains the server configuration that is used to serve the application manifest.
12+
13+
> Should I commit the ".expo" folder?
14+
15+
No, you should not share the ".expo" folder. It does not contain any information that is relevant for other developers working on the project, it is specific to your machine.
16+
17+
Upon project creation, the ".expo" folder is already added to your ".gitignore" file.

.expo/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"hostType": "lan",
3+
"lanType": "ip",
4+
"dev": true,
5+
"minify": false,
6+
"urlRandomness": null,
7+
"https": false
8+
}

.github/FUNDING.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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: kikiding
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: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
13+
karyakarsa: 'https://karyakarsa.com/kikiding'

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
# Rapi UI
22

3-
![react-native-rapi-ui](media/hero.png)
3+
![react-native-rapi-ui](media/hero02.png)
44

55
[Documentation](https://rapi-ui.kikiding.space/)
66

77
[Demo](https://expo.io/@kidingki/projects/react-native-rapi-ui-showcase)
88

99
[Example](https://github.com/codingki/react-native-rapi-ui/tree/master/examples/showcase)
1010

11+
## Changelog 0.2.0
12+
13+
- Added dark mode
14+
- (Breaking change) `useCachedResources()` is now deprecated
15+
- (Breaking change) since `useCachedResources()` is deprecated, now in version 0.2 all you need to do is use the `ThemeProvider` to wrap your application
16+
1117
## Components
1218

1319
- Layout
@@ -19,3 +25,9 @@
1925
- CheckBox
2026
- RadioButton
2127
- Avatar
28+
29+
## Support me
30+
31+
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/N4N14MQVU)
32+
33+
[Karya Karsa](https://karyakarsa.com/kikiding)

index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import useCachedResources from './hooks/useCachedResources';
22
import { themeColor } from './constants/colors';
3-
export * from './provider/ThemeProvider'
3+
export * from './provider/ThemeProvider';
44
export * from './components';
5-
export { useCachedResources, themeColor };
5+
export { themeColor };

media/hero02.png

1.64 MB
Loading

0 commit comments

Comments
 (0)