Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tela de termos #27

Closed
annabalves opened this issue May 23, 2022 · 0 comments
Closed

Tela de termos #27

annabalves opened this issue May 23, 2022 · 0 comments
Assignees

Comments

@annabalves
Copy link
Owner

import React from 'react';
import { Text, View, Image, Pressable } from 'react-native';
import { Ionicons } from '@expo/vector-icons';

export default function Atendimento({navigation}){
return (

 <View style={{
   flex: 1,
   backgroundColor:'#111828',
    alignItems: 'center',
    justifyContent: 'center',
    width:'100%',
    height:'100%'
}}>
<View style={{
  paddingTop:5,
  }}>
  
  <Pressable style={{ 
    position:'relative',
    paddingLeft:10,
    height:30,
    bottom:60,
    flexDirection:'row',
    alignItems:'center',
    }} 
    onPress={() => navigation.navigate ('menu')}>
    <Ionicons name="ios-arrow-back-circle-outline" size={30} color="white" /><Text style={{
      color:'white',
    }}>Voltar</Text>  
  </Pressable>
  </View>
  <Text style={{ 
    fontSize:24 }}><Image
    style={{
    width: 90,
    height: 90,}}
    source={require('./imagens/termosas.png')}
  /></Text>
  <Text style={{
    fontSize:20,
    color:'white'
  }}>Aconteceu algum erro ops...</Text>

  <Text style={{
    paddingTop:20,
    fontSize:20,
    color:'white'
  }}>Tente mais tarde!</Text>
</View>

);
}

image

@annabalves annabalves self-assigned this May 23, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant