Gathering detailed insights and metrics for @expo-google-fonts/aref-ruqaa-ink
Gathering detailed insights and metrics for @expo-google-fonts/aref-ruqaa-ink
Gathering detailed insights and metrics for @expo-google-fonts/aref-ruqaa-ink
Gathering detailed insights and metrics for @expo-google-fonts/aref-ruqaa-ink
Use any of the 1000+ fonts (and their variants) from fonts.google.com in your Expo app.
npm install @expo-google-fonts/aref-ruqaa-ink
Typescript
Module System
Node Version
NPM Version
67.8
Supply Chain
98.6
Quality
83.2
Maintenance
100
Vulnerability
100
License
JavaScript (99.77%)
TypeScript (0.19%)
EJS (0.05%)
Total Downloads
428
Last Day
3
Last Week
9
Last Month
29
Last Year
222
MIT License
848 Stars
151 Commits
74 Forks
11 Watchers
2 Branches
21 Contributors
Updated on May 04, 2025
Minified
Minified + Gzipped
Latest Version
0.3.0
Package Id
@expo-google-fonts/aref-ruqaa-ink@0.3.0
Unpacked Size
1.42 MB
Size
692.28 kB
File Count
16
NPM Version
10.8.2
Node Version
20.19.0
Published on
Mar 31, 2025
Cumulative downloads
Total Downloads
Last Day
0%
3
Compared to previous day
Last Week
12.5%
9
Compared to previous week
Last Month
-63.7%
29
Compared to previous month
Last Year
86.6%
222
Compared to previous year
No dependencies detected.
This package lets you use the Aref Ruqaa Ink font family from Google Fonts in your Expo app.
This font family contains 2 styles.
ArefRuqaaInk_400Regular
ArefRuqaaInk_700Bold
Run this command from the shell in the root directory of your Expo project to add the font family package to your project
1npx expo install @expo-google-fonts/aref-ruqaa-ink expo-font
Now add code like this to your project
1import { Text, View } from "react-native"; 2import { useFonts } from '@expo-google-fonts/aref-ruqaa-ink/useFonts'; 3import { ArefRuqaaInk_400Regular } from '@expo-google-fonts/aref-ruqaa-ink/400Regular'; 4import { ArefRuqaaInk_700Bold } from '@expo-google-fonts/aref-ruqaa-ink/700Bold'; 5 6export default () => { 7 8 let [fontsLoaded] = useFonts({ 9 ArefRuqaaInk_400Regular, 10 ArefRuqaaInk_700Bold 11 }); 12 13 let fontSize = 24; 14 let paddingVertical = 6; 15 16 if (!fontsLoaded) { 17 return null; 18 } else { 19 return ( 20 <View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}> 21 <Text style={{ 22 fontSize, 23 paddingVertical, 24 // Note the quoting of the value for `fontFamily` here; it expects a string! 25 fontFamily: "ArefRuqaaInk_400Regular" 26 }}> 27 Aref Ruqaa Ink Regular 28 </Text> 29 <Text style={{ 30 fontSize, 31 paddingVertical, 32 // Note the quoting of the value for `fontFamily` here; it expects a string! 33 fontFamily: "ArefRuqaaInk_700Bold" 34 }}> 35 Aref Ruqaa Ink Bold 36 </Text> 37 </View> 38 ); 39 } 40};
![]() | ![]() |
If you are trying out lots of different fonts, you can try using the @expo-google-fonts/dev
package.
You can import any font style from any Expo Google Fonts package from it. It will load the fonts over the network at runtime instead of adding the asset as a file to your project, so it may take longer for your app to get to interactivity at startup, but it is extremely convenient for playing around with any style that you want.
The @expo-google-fonts/aref-ruqaa-ink
package and its code are released under the MIT license.
All the fonts in the Google Fonts catalog are free and open source.
Check the Aref Ruqaa Ink page on Google Fonts for the specific license of this font family.
You can use these fonts freely in your products & projects - print or digital, commercial or otherwise. However, you can't sell the fonts on their own. This isn't legal advice, please consider consulting a lawyer and see the full license for all details.
@expo-google-fonts/dev
Devlopment PackageContributions are very welcome! This entire directory, including what you are reading now, was generated from code. Instead of submitting PRs to this directly, please make contributions to the generator instead.
No vulnerabilities found.
Reason
23 commit(s) and 22 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
packaging workflow detected
Details
Reason
0 existing vulnerabilities detected
Reason
binaries present in source code
Details
Reason
Found 18/23 approved changesets -- score normalized to 7
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Score
Last Scanned on 2025-04-28
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More