最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to implement a scratch cardview in react-native? - Stack Overflow

programmeradmin2浏览0评论

I'm looking for a package to implement a scratch card in react-native. I have found this library but the problem is that it works only on android. Is there a library that works on both iOS and android, or can I implement this in pure javascript?

I'm looking for a package to implement a scratch card in react-native. I have found this library https://github./thebylito/react-native-scratch-card but the problem is that it works only on android. Is there a library that works on both iOS and android, or can I implement this in pure javascript?

Share Improve this question asked Feb 12, 2019 at 17:36 Ahmad S. SadekAhmad S. Sadek 1164 silver badges9 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 3

You can use a library I made: react-native-scratch

npm install react-native-scratch --save

This library supports both Android and iOS and enables you to use multiple scratch views in your app, for example - a FlatList with scratch cards.

Other functionality includes:

  • Autofill the containing view to cover its content until you scratch
  • User defined background color to use while the image is loading
  • You can set an image from a url or from a resource file in your application (or no image at all)
  • Image resize modes are supported (stretch/cover/contain)
  • User defined brush size and scratch threshold
  • Touch events (to stop a ScrollView/FlatList from scrolling while scratching)
  • Progress report while scratching
  • Fade animation (optional) when the scratch view reaches its scratch threshold

UPD 2022 Try this library https://www.npmjs./package/rn-scratch-card

It's implemented for Android and iOS.

You can use this https://github./romangua/react-native-scratch-view library to implement the scratch card for both iOS and android.

Install it by running

npm install react-native-scratch-view --save

After that link it

react-native link react-native-scratch-view

In case if you get 404 not Found error in your terminal after running the install mand. You can do this:

1- Open your package.json file

2- In your dependencies do something like this:

"dependencies":{
    "react-native-scratch-view": "romangua/react-native-scratch-view",
}

3- Run npm install after this and you can use it directly in your project by using import ScratchImageView from 'react-native-scratch-view';

I am using the same library for both Android and iOS and it's working on both.

Hope this helps!!

发布评论

评论列表(0)

  1. 暂无评论