Criar o arquivo ~/.ssh/config e adicionar:
Host github.com
Hostname ssh.github.com
Port 443
Host bitbucket.org
Hostname altssh.bitbucket.org
Port 443
Host gitlab.com
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Example", | |
| "type": "node", | |
| "request": "launch", | |
| "runtimeExecutable": "node", | |
| "runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"], |
| const { default: axios } = require("axios"); | |
| require("dotenv").config(); | |
| const FCM_TOKEN = ""; | |
| (async () => { | |
| try { | |
| const body = { | |
| registration_ids: [FCM_TOKEN], |
| describe('when a Ref is provided', () => { | |
| it('should export the reload method', () => { | |
| const webView = tree.getByTestId('webView'); | |
| const ref = webView.props.children[1].ref; | |
| expect(ref.current.reload).toBeTruthy(); | |
| }); | |
| }); |
| const wrapperBind = <T>(controller: T, nameMethod: keyof T): any => { | |
| const func = controller[nameMethod] as unknown as CallableFunction; | |
| return func.bind(controller); | |
| }; | |
| export default wrapperBind; |
Criar o arquivo ~/.ssh/config e adicionar:
Host github.com
Hostname ssh.github.com
Port 443
Host bitbucket.org
Hostname altssh.bitbucket.org
Port 443
Host gitlab.com
| import 'package:bloc_pattern/bloc_pattern.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:fluttetube/blocs/videos_bloc.dart'; | |
| import 'package:fluttetube/screens/home_screen.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { |
| { | |
| "users": [ | |
| { | |
| "id": 1, | |
| "name": "Leanne Graham", | |
| "username": "Bret", | |
| "email": "[email protected]", | |
| "address": { | |
| "street": "Kulas Light", | |
| "suite": "Apt. 556", |
| import React from "react"; | |
| import { ScrollView, Image, Text } from "react-native"; | |
| const data = Array(30) | |
| .fill(0) | |
| .map((el, i) => ( | |
| <Text | |
| style={{ | |
| marginVertical: 10, | |
| textAlign: "center", |
| import React from "react"; | |
| import { View } from "react-native"; | |
| const AnimacaoScrollView = () => { | |
| return <View />; | |
| }; | |
| export default AnimacaoScrollView; |