react-native-legend-ruler-picker
React Native Ruler Picker with Legend List
File Explorer
- action.yml
- bug_report.yml
- config.yml
- publish.yml
- release.yml
- FUNDING.yml
- yarn-4.11.0.cjs
- banner.png
- android.gif
- iOS.gif
- AndroidManifest.xml
- AndroidManifest.xml
- MainActivity.kt
- MainApplication.kt
- ic_launcher_background.xml
- rn_edit_text_material.xml
- splashscreen_logo.png
- splashscreen_logo.png
- splashscreen_logo.png
- splashscreen_logo.png
- splashscreen_logo.png
- ic_launcher.xml
- ic_launcher_round.xml
- ic_launcher.webp
- ic_launcher_foreground.webp
- ic_launcher_round.webp
- ic_launcher.webp
- ic_launcher_foreground.webp
- ic_launcher_round.webp
- ic_launcher.webp
- ic_launcher_foreground.webp
- ic_launcher_round.webp
- ic_launcher.webp
- ic_launcher_foreground.webp
- ic_launcher_round.webp
- ic_launcher.webp
- ic_launcher_foreground.webp
- ic_launcher_round.webp
- colors.xml
- strings.xml
- styles.xml
- colors.xml
- AndroidManifest.xml
- build.gradle
- debug.keystore
- proguard-rules.pro
- gradle-wrapper.jar
- gradle-wrapper.properties
- .gitignore
- build.gradle
- gradle.properties
- gradlew
- gradlew.bat
- settings.gradle
- adaptive-icon.png
- favicon.png
- icon.png
- splash-icon.png
- [email protected]
- Contents.json
- Contents.json
- Contents.json
- image.png
- [email protected]
- [email protected]
- Contents.json
- Expo.plist
- AppDelegate.swift
- example-Bridging-Header.h
- example.entitlements
- Info.plist
- PrivacyInfo.xcprivacy
- SplashScreen.storyboard
- example.xcscheme
- project.pbxproj
- contents.xcworkspacedata
- .gitignore
- .xcode.env
- Podfile
- Podfile.lock
- Podfile.properties.json
- App.tsx
- app.json
- babel.config.js
- index.js
- metro.config.js
- package.json
- tsconfig.json
- index.test.tsx
- ruler-picker-item.tsx
- ruler-picker.tsx
- calculations.ts
- index.tsx
- .editorconfig
- .gitattributes
- .gitignore
- .nvmrc
- .watchmanconfig
- .yarnrc.yml
- babel.config.js
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- eslint.config.mjs
- lefthook.yml
- LICENSE
- package.json
- README.md
- tsconfig.build.json
- tsconfig.json
- turbo.json
- yarn.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
black
View Details ▼
black
Format Python code automatically.
See also: `ruff`.
black {{path/to/file_or_directory}}
Auto-format a file or entire directory:
black {{[-c|--code]}} "{{code}}"
Format the code passed in as a string:
black --check {{path/to/file_or_directory}}
Show whether a file or a directory would have changes made to them if they were to be formatted:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
pnpm
View Details ▼
pnpm
Fast, disk space efficient package manager for Node.js.
Manage Node.js projects and their module dependencies.
pnpm init
Create a `package.json` file:
pnpm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
pnpm add {{module_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
yarn
View Details ▼
yarn
JavaScript and Node.js package manager alternative.
yarn global add {{module_name}}
Install a module globally:
yarn install
Install all dependencies referenced in the `package.json` file (the `install` is optional):
yarn add {{module_name}}@{{version}}
Install a module and save it as a dependency to the `package.json` file (add `--dev` to save as a dev dependency):
