-
Notifications
You must be signed in to change notification settings - Fork 0
/
Walkthrough.js
41 lines (27 loc) · 1.08 KB
/
Walkthrough.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import React, {Component} from 'react';
import {Image} from 'react-native';
import Onboarding from 'react-native-onboarding-swiper';
import AppNavigator from "./Navigation/Navigation";
import Home from "./Screen/Home";
export class Expenso extends Component {
render() {
return (
<Onboarding onDone={()=>this.props.navigation.navigate('Signup')}
pages={[
{
backgroundColor: '#fff',
image: <Image style={{width: 200, height: 200}} source={require('./Screen/money.png')} />,
title: 'A better Way to track Your expenses',
subtitle: 'Split and Share your expenses',
},
{
backgroundColor: '#fff',
image: <Image style={{width: 200, height: 200}} source={require('./Screen/money.png')} />,
title: 'Lets get started',
subtitle: '',
},
]}
/>
);
}
}