Commit 56abfde

mo khan <mo@mokhan.ca>
2016-12-23 22:45:15
add header to login screen.
1 parent 4ce875f
Changed files (1)
app
app/screens/login-screen.js
@@ -1,6 +1,6 @@
 import React from 'react';
 import { View, Button, StyleSheet } from 'react-native';
-import { Container, Content, Spinner } from 'native-base';
+import { Container, Header, Title, Content, Spinner } from 'native-base';
 import Account from '../domain/account'
 import Api from '../infrastructure/api'
 import DashboardScreen from './dashboard-screen'
@@ -26,7 +26,12 @@ export default class LoginScreen extends ApplicationComponent {
 
   render() {
     return (
-      <Container>{this.content()}</Container>
+      <Container>
+        <Header>
+          <Title>StrongLifters</Title>
+        </Header>
+        {this.content()}
+      </Container>
     )
   }