https://github.com/react-native-community/hooks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <dl> | |
| <dt> </dt> | |
| <dd> </dd> | |
| <dt> </dt> | |
| <dd> </dd> | |
| <dt> </dt> | |
| <dd> </dd> | |
| </dl> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .button{ | |
| width:114px; | |
| height:37px; | |
| border: none; | |
| background: transparent url(images/submit_btn.gif) no-repeat center; | |
| overflow: hidden; | |
| text-indent: -999px; | |
| font-size: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #feature { | |
| position: relative; | |
| width: 748px; | |
| } | |
| #feature-content{ | |
| opacity:0; | |
| position: absolute; | |
| bottom: 0px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .sb-search-input::-webkit-input-placeholder { | |
| color: #efb480; | |
| } | |
| .sb-search-input:-moz-placeholder { | |
| color: #efb480; | |
| } | |
| .sb-search-input::-moz-placeholder { | |
| color: #efb480; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { createReducer, createActions } from 'reduxsauce' | |
| import { Map } from 'immutable' | |
| /* ------------- Initial State ------------- */ | |
| export const INITIAL_STATE = Map({ | |
| properties: null, | |
| }) | |
| /* ------------- Types and Action Creators ------------- */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| import 'package:webview_flutter/webview_flutter.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| // This widget is the root of your application. | |
| @override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import {View, Text, StyleSheet} from 'react-native'; | |
| interface ITest {} | |
| const Foo: React.FC<ITest> = () => { | |
| return ( | |
| <View style={styles.container}> | |
| <Text>Hello World </Text> | |
| </View> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ================ EXAMPLE 1 | |
| // Context is used to pass data down the component tree without having to thread the props manually through every component. | |
| // ######## | |
| interface ITimerContextProps { | |
| handlePause: () => void; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://snack.expo.dev/@saad-bashar/authentication-flow |