Skip to content

Instantly share code, notes, and snippets.

View philorocha's full-sized avatar

Felipe Vieira da Rocha philorocha

  • São Lourenço da Mata, Pernambuco, Brazil
View GitHub Profile
/*Implementação de lista dinâmica*/
#include <stdio.h>
#include <stdlib.h>
typedef struct No{
int valor;
struct No* proximo;
} No;
No* adicionar(No* no, int valor) {
import { StyleSheet, Text, View, Platform, ScrollView } from 'react-native';
import { Icon, Image, ListItem, Avatar, Header, Button } from 'react-native-elements';
import { useEffect, useState } from 'react';
import { useIsFocused } from '@react-navigation/native';
import { getValueFor } from '../token/token';
import axios from 'axios';
export default function DisplayLojaView({ navigation, route }) {
const { idLoja } = route.params;
const [token, setToken] = useState('');