Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-native-units
Advanced tools
A collection of useful units and a simple grid implementation for responsive layouts in React Native.
A collection of useful units and a simple grid implementation for responsive layouts in React Native.
React Native uses density-independent pixels, or dp, as it's default unit. This will size elements so that they are roughly the same physical size on different devices. Whilst this is useful, I missed some of the units you have available in CSS.
Add the package from NPM. No react-native-link
required.
yarn add 'react-native-units'
- or -
npm install 'react-native-units'
Import the library where you need it:
import RNU from 'react-native-units'
% of the screen width, e.g. RNU.vw(10)
is equal to 10%
of the screens width
% of the screen height, e.g. RNU.vh(10)
is equal to 10%
of the screen height
Physical pixels based on device pixel ratio, e.g. RNU.px(1)
is equal to 1 pixel
on the device, handy for very thin lines!
Scaled unit, similar to rem
in CSS. You can set the scale using RNU.setScale(scale)
. This is useful for scaling fonts and layouts depending on the device e.g.
if(iPad) RNU.setScale(0.75) // RNU.su(10) > 7.5dp
if(iPhone5) RNU.setScale(1.5) // RNU.su(10) > 15dp
A simple way to create grids. First set your parameters:
RNU.setGrid({
cols: 24,
padding: 20,
spacing: 10
})
Then use the gr, gs & gp
units to create your layout. I have made a snack here which will create the example below.
This unit is equal to one column's width, however it will also include any spacing it encompasses. In this example, if RNU.gr(1)
is equal to 12dp
then RNU.gr(2)
will equal 34dp ((12*2)+10)
The grid spacing. In this example RNU.gs()
is equal to 10dp
The grid padding. In this example RNU.gp()
is equal to 20dp
As this library depends on the screen width and height to calculate units, when the screen rotates you need to call RNU.update()
. The easiest way is to add an onLayout
to your main app component e.g.
<View onLayout={() => { RNU.update() }>
...
</View>
FAQs
A collection of useful units and a simple grid implementation for responsive layouts in React Native.
The npm package react-native-units receives a total of 27 weekly downloads. As such, react-native-units popularity was classified as not popular.
We found that react-native-units demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.