Skip to content

Instantly share code, notes, and snippets.

View Ashoat's full-sized avatar
🔐

Ashoat Tevosyan Ashoat

🔐
View GitHub Profile
Error: src/views/TabView/TabView.js:211
211: return <TabViewAnimated {...props} />;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ React element `TabViewAnimated`
148: routes: Array<NavigationRoute>,
^^^^^^^^^^^^^^^ intersection. This type is incompatible with. See: src/TypeDefinition.js:148
56: export default class TabViewAnimated<T: Route<*>> extends React.Component<
^^^^^^^^ empty. See: node_modules/react-native-tab-view/src/TabViewAnimated.js:56
Member 1:
175: export type NavigationStateRoute = NavigationLeafRoute & NavigationState;
^^^^^^^^^^^^^^^^^^^ NavigationLeafRoute. See: src/TypeDefinition.js:175
Error: src/navigators/DrawerNavigator.js:94
94: )((props: *) => <DrawerScreen {...props} />),
^^^^^^^^^^^^^^^^^^^^^^^^^^^ React element `DrawerScreen`
21: NavigationTabAction,
^^^^^^^^^^^^^^^^^^^ exact type: object type. This type is incompatible with. See: src/views/Drawer/DrawerScreen.js:21
37: InjectedProps<S, NavigationInitAction | A, O> & NavigationNavigatorProps<O, S>
^^^^^^^^^^^^^^^^^^^^^^^^ union: NavigationInitAction | A. See: src/navigators/createNavigator.js:37
Member 1:
37: InjectedProps<S, NavigationInitAction | A, O> & NavigationNavigatorProps<O, S>
^^^^^^^^^^^^^^^^^^^^ NavigationInitAction. See: src/navigators/createNavigator.js:37
diff --git a/.flowconfig b/.flowconfig
index 61567d6..a868d81 100644
--- a/.flowconfig
+++ b/.flowconfig
@@ -9,7 +9,9 @@
; For RN Apps installed via npm, "Libraries" folder is inside
; "node_modules/react-native" but in the source repo it is in the root
.*/Libraries/react-native/React.js
-.*/Libraries/react-native/ReactNative.js
+
diff --git a/.flowconfig b/.flowconfig
index 61567d6..a868d81 100644
--- a/.flowconfig
+++ b/.flowconfig
@@ -9,7 +9,9 @@
; For RN Apps installed via npm, "Libraries" folder is inside
; "node_modules/react-native" but in the source repo it is in the root
.*/Libraries/react-native/React.js
-.*/Libraries/react-native/ReactNative.js
+
@Ashoat
Ashoat / gist:1969bf63b407696d835ef397ebb4acd7
Created October 16, 2017 04:27
flow-typed lint-staged precommit bug
ashoat@Ashoats-MacBook-Pro [~/Dropbox/src/flow-typed/definitions]# npm run precommit
> [email protected] precommit /Users/ashoat/Dropbox/src/flow-typed/definitions
> lint-staged
● Validation Warning:
Unknown option "package.json" with value ["prettier-package-json --write", "prettier --write", "git add"] was found.
This is probably a typing mistake. Fixing it will remove this message.
Please refer to https://github.com/okonet/lint-staged#configuration for more information...
Scanning folders for symlinks in /Users/ashoat/Dropbox/src/react-native-tag-input/Example/node_modules (11ms)
JS server already running.
Building and installing the app on the device (cd android && ./gradlew installDebug)...
Incremental java compilation is an incubating feature.
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72301Library
:app:prepareComAndroidSupportRecyclerviewV72301Library
@Ashoat
Ashoat / ledscape_installation.sh
Created August 9, 2017 22:56
ledscape installation
ashoat@Ashoats-MacBook-Pro [~/Dropbox/src/LEDscape]# sudo dd if=~/Downloads/ledscape-arch-linux.img of=/dev/rdisk2 bs=4m
Password:
1024+0 records in
1024+0 records out
4294967296 bytes transferred in 275.179716 secs (15607863 bytes/sec)
ashoat@Ashoats-MacBook-Pro [~/Dropbox/src/LEDscape]# ssh [email protected]
[email protected]'s password:
[ 10:41PM ] [ ledscape@ledscape:~ ]
$ sudo /home/ledscape/LEDscape/install-to-emmc.sh ledscape.local 192.168.1.8
About to setup this beaglebone to be ledscape.local (192.168.1.8)
[ 12:42AM ] [ ledscape@ledscape:~/LEDscape(master✗) ]
$ sudo pkill -9 opc-server; sudo ./run-ledscape
tokens: 383: {
"outputMode": "ws281x",
"outputMapping": "rgb-123-v2",
"demoMode": "fade",
"ledsPerStrip": 214,
"usedStripCount": 43,
"colorChannelOrder": "BRG",
"opcTcpPort": 7890,
Libraries/Components/ActivityIndicator/ActivityIndicator.js:const ActivityIndicator = React.createClass({
Libraries/Components/DatePicker/DatePickerIOS.ios.js:const DatePickerIOS = React.createClass({
Libraries/Components/DrawerAndroid/DrawerLayoutAndroid.android.js:var DrawerLayoutAndroid = React.createClass({
Libraries/Components/Keyboard/KeyboardAvoidingView.js:const KeyboardAvoidingView = React.createClass({
Libraries/Components/LazyRenderer.js:var LazyRenderer = React.createClass({
Libraries/Components/Navigation/NavigatorIOS.ios.js:var NavigatorIOS = React.createClass({
Libraries/Components/Picker/Picker.js: // $FlowFixMe found when converting React.createClass to ES6
Libraries/Components/Picker/Picker.js: // $FlowFixMe found when converting React.createClass to ES6
Libraries/Components/Picker/PickerIOS.ios.js:var PickerIOS = React.createClass({
Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.android.js:var ProgressBarAndroid = React.createClass({
@Ashoat
Ashoat / text-height-measurer.js
Created May 11, 2017 04:24
React Native component for measuring text height
// @flow
import type {
StyleObj,
} from 'react-native/Libraries/StyleSheet/StyleSheetTypes';
import React from 'react';
import PropTypes from 'prop-types';
import { Text, View, StyleSheet } from 'react-native';
import invariant from 'invariant';