Skip to content

Commit

Permalink
refactor: conditional icon rendering (#73)
Browse files Browse the repository at this point in the history
* chore: remove bare workflow example

* fix: icon rendering and touchable on android issue

* refactor: update menu list blur view props

* refactor: update backdrop for android

* chore: update peer dependencies

* chore: update yarn lock and gitignore

* refactor: update example app as expo

* chore: update gitignore

* fix: ts issues

* v0.1.4

* chore: update changelog

* chore: update playground example

* refactor: use tap gesture for both platforms

* v0.1.5

* refactor: use absolute path for package
  • Loading branch information
enesozturk committed Jul 19, 2022
1 parent 39d2b65 commit bd61a37
Show file tree
Hide file tree
Showing 87 changed files with 25,382 additions and 9,120 deletions.
10 changes: 7 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node_modules/**/*
node_modules/
.expo/*
npm-debug.*
*.jks
Expand Down Expand Up @@ -78,7 +78,7 @@ buck-out/
/ios/Pods/

# Expo
.expo/*
**/.expo/*
web-build/

# @end expo-cli
Expand All @@ -90,4 +90,8 @@ lib/
.env.development

# Build
*.tgz
*.tgz

# Example App
example/node_modules/
example/.expo/
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v0.1.5](https://github.com/enesozturk/react-native-hold-menu/compare/v0.1.4...v0.1.5)

- refactor: use tap gesture for both platforms [`fc99dea`](https://github.com/enesozturk/react-native-hold-menu/commit/fc99dea83dfeacb5542c6e58ee81e2a19b254cd7)
- chore: update playground example [`6ddcc9d`](https://github.com/enesozturk/react-native-hold-menu/commit/6ddcc9d3e3c8db57847b793c8de6ea14638495e2)
- chore: update changelog [`96e4f6b`](https://github.com/enesozturk/react-native-hold-menu/commit/96e4f6b224aa6f851d1b323de62f7461663c8dca)

#### [v0.1.4](https://github.com/enesozturk/react-native-hold-menu/compare/v0.1.3...v0.1.4)

> 20 July 2022
- refactor: update example app as expo [`9bdbd6b`](https://github.com/enesozturk/react-native-hold-menu/commit/9bdbd6bf1261896e54bae58ec50af0d925c57a70)
- chore: remove bare workflow example [`8bc071e`](https://github.com/enesozturk/react-native-hold-menu/commit/8bc071e2c5020361a9c7d9b402dd0cd6c4be9479)
- refactor: update backdrop for android [`ba2fc1f`](https://github.com/enesozturk/react-native-hold-menu/commit/ba2fc1f272c9b52f87e89a0d802a9525136ed5a5)

#### [v0.1.3](https://github.com/enesozturk/react-native-hold-menu/compare/v0.1.2...v0.1.3)

> 17 April 2022
Expand All @@ -27,7 +41,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
> 7 August 2021
- fix: general refactor about spread usage, menu item, optional icon component [`#39`](https://github.com/enesozturk/react-native-hold-menu/pull/39)
- release: v0.1.0 📦 [`#27`](https://github.com/enesozturk/react-native-hold-menu/pull/27)
- release: v0.1.0 📦 [`#27`](https://github.com/enesozturk/react-native-hold-menu/pull/27)
- chore: release v0.1.1 [`81003d2`](https://github.com/enesozturk/react-native-hold-menu/commit/81003d21b596944013165800f7787eec49ff4e7b)

#### [v0.1.0](https://github.com/enesozturk/react-native-hold-menu/compare/v0.0.8...v0.1.0)
Expand Down
1 change: 0 additions & 1 deletion example-expo
Submodule example-expo deleted from a532d8
6 changes: 0 additions & 6 deletions example/.buckconfig

This file was deleted.

4 changes: 0 additions & 4 deletions example/.eslintrc.js

This file was deleted.

4 changes: 4 additions & 0 deletions example/.expo-shared/assets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"12bb71342c6255bbf50437ec8f4441c083f47cdb74bd89160c15e4f43e52a1cb": true,
"40b842e832070c58deac6aa9e08fa459302ee3f9da492c7e77d93d2fbf4a56fd": true
}
1 change: 0 additions & 1 deletion example/.gitattributes

This file was deleted.

63 changes: 0 additions & 63 deletions example/.gitignore

This file was deleted.

8 changes: 0 additions & 8 deletions example/.prettierrc.json

This file was deleted.

1 change: 0 additions & 1 deletion example/.watchmanconfig

This file was deleted.

12 changes: 12 additions & 0 deletions example/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import 'react-native-gesture-handler';

import { SafeAreaProvider } from 'react-native-safe-area-context';
import MainApp from './src/App';

export default function App() {
return (
<SafeAreaProvider>
<MainApp />
</SafeAreaProvider>
);
}
14 changes: 0 additions & 14 deletions example/__tests__/App-test.tsx

This file was deleted.

55 changes: 0 additions & 55 deletions example/android/app/_BUCK

This file was deleted.

Loading

0 comments on commit bd61a37

Please sign in to comment.