Here are 15 open source codebases in a self-designated 3 level system.
But first... Google JavaScript Style Guide
#!/bin/sh | |
print_usage() { | |
echo "usage: compress_video <input_file>" | |
echo "supported formats: mp4, webm, mkv, mov, avi, flv" | |
} | |
get_extension() { | |
f="${1##*/}" | |
case "$f" in |
import { useMemo } from "react"; | |
import { View } from "react-native"; | |
import Battery0Icon from "../../assets/images/battery-0-icon.svg"; | |
import Battery25Icon from "../../assets/images/battery-25-icon.svg"; | |
import Battery50Icon from "../../assets/images/battery-50-icon.svg"; | |
import Battery75Icon from "../../assets/images/battery-75-icon.svg"; | |
import Battery100Icon from "../../assets/images/battery-100-icon.svg"; | |
import { COLORS } from "../constants"; |
//@ts-nocheck | |
import Constants, {AppOwnership} from 'expo-constants'; | |
import {Image} from 'react-native'; | |
let ImageElement = Image; | |
function init() { | |
// https://docs.expo.dev/versions/latest/sdk/constants/ | |
// AppOwnership.Expo - The experience is running inside of the Expo Go app. | |
if (Constants.appOwnership !== AppOwnership.Expo) { | |
import('react-native-fast-image').then((FastImage) => { |
import React, { useState } from "react"; | |
import { Dimensions, View, Text, Switch } from "react-native"; | |
const { height, width } = Dimensions.get("window"); | |
export default function App() { | |
const [isEnabled, setIsEnabled] = useState(false); | |
const toggleSwitch = () => setIsEnabled((previousState) => !previousState); | |
return ( | |
<View |
Here are 15 open source codebases in a self-designated 3 level system.
But first... Google JavaScript Style Guide
//home.css | |
:root{ | |
--HeaderTop:#734610; | |
--HeaderBottom:#A67233; | |
--Background:#F0F0F0; | |
--Lines:#734610; | |
--VerticalLine:#D70000; | |
--Card:rgb(240,240,240,0.9); |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
import { DependencyList, useMemo } from "react"; | |
import { | |
ImageStyle, | |
RegisteredStyle, | |
StyleProp, | |
StyleSheet, | |
TextStyle, | |
ViewStyle, | |
} from "react-native"; |
These have been grouped into a number of sections as it relates to React Native
What is the InteractionManager and how is it used? Why is it important?
Which node_modules will run in React Native? How can we test for this?
What is wrong with this code for querying a native API?
class Gyros {
setGyroPosition(pos) {
if (pos=== null || typeof pos === "undefined") {