Getting started:
Related tutorials:
| <!DOCTYPE html> | |
| <html lang="en" dir="ltr"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <style> | |
| .case { | |
| width: 40vw; | |
| height: 40vh; | |
| background-color: green; | |
| } |
| import React, { Component } from "react"; | |
| import Expo from "expo"; | |
| import * as SQLite from "expo-sqlite"; | |
| import axios from "axios"; | |
| import t from "tcomb-form-native"; | |
| import { | |
| StyleSheet, | |
| Alert, | |
| FlatList, | |
| View, |
| import React from "react"; | |
| import Constants from "expo-constants"; | |
| import { View, Button } from "react-native"; | |
| import Expo from "expo"; | |
| import { SQLite } from "expo-sqlite"; | |
| import axios from "axios"; | |
| const db = SQLite.openDatabase("db.db"); | |
| export default class SetUp extends React.Component { |
| import React from "react"; | |
| import { | |
| StyleSheet, | |
| Alert, | |
| FlatList, | |
| View, | |
| Dimensions, | |
| Button, | |
| Text, | |
| ImageBackground, |
| import React, {Component} from 'react'; | |
| import { StyleSheet, Text, View, TextInput, Button } from 'react-native'; | |
| import TakePicture from './TakePicture' | |
| export default class App extends Component { | |
| render() { |
| import React, {Component} from 'react'; | |
| import { StyleSheet, Text, View, TextInput, Button } from 'react-native'; | |
| import * as FileSystem from 'expo-file-system'; | |
| import Constants from 'expo-constants'; | |
| import t from 'tcomb-form-native'; | |
| import React from "react"; | |
| import { Platform, StyleSheet, Text, View, Switch, TouchableOpacity, Image } from "react-native"; | |
| import * as FileSystem from 'expo-file-system'; | |
| import * as Permissions from 'expo-permissions'; | |
| import * as Location from 'expo-location'; | |
| import { Camera } from 'expo-camera'; | |
| import Constants from 'expo-constants'; | |
| import { | |
| Ionicons, | |
| MaterialIcons, |
| <div> | |
| <button onClick={this.handledonneMoiUnSimpsonClick}> | |
| Filtre les Simpson ! | |
| </button> | |
| <div> | |
| {this.state.quotes | |
| .filter( | |
| quote => | |
| !this.state.donneMoiUnSimpson || | |
| quote.character.includes("Simpson") |
| import React, { Component } from "react"; | |
| import "bootstrap/dist/css/bootstrap.min.css"; | |
| import { | |
| Button, | |
| ListGroup, | |
| ListGroupItem, | |
| Form, | |
| Input, | |
| Row, | |
| Col, |
Getting started:
Related tutorials: