Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Web Prosjekt 4
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Erling Fridtjof Olweus
Web Prosjekt 4
Merge requests
!1
Develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Develop
develop
into
master
Overview
0
Commits
16
Pipelines
0
Changes
10
Merged
Erling Fridtjof Olweus
requested to merge
develop
into
master
5 years ago
Overview
0
Commits
16
Pipelines
0
Changes
10
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
c9d97492
16 commits,
5 years ago
10 files
+
863
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
my-project/components/Header/Header.js
0 → 100644
+
47
−
0
Options
// import React from 'react'
// import {
// StyleSheet,
// Text,
// View
// } from 'react-native';
//
// function Header() {
// return(
// <View style={styles.header}>
// <Text style={styles.text}>The playlist of</Text>
// <Text style={styles.text}>Epicness</Text>
// </View>
// )
// }
//
// const styles = StyleSheet.create({
// header: {
//
// backgroundColor: '#3e3f40',
// alignItems: 'center',
// height: 'auto',
// width: '100%'
// },
// text: {
// color: 'white',
// fontSize: 30
// }
// })
import
*
as
React
from
'
react
'
;
import
{
Appbar
}
from
'
react-native-paper
'
;
export
default
class
Header
extends
React
.
Component
{
render
()
{
return
(
<
Appbar
.
Header
>
<
Appbar
.
Content
title
=
"
Spotifake
"
subtitle
=
"
by Erling O
"
/>
{
/* <Appbar.Action icon="search" onPress={this._handleSearch} />
<Appbar.Action icon="more-vert" onPress={this._handleMore} /> */
}
<
/Appbar.Header
>
);
}
}
Loading