-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13d62c1
commit c0382eb
Showing
5 changed files
with
44 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import React from 'react'; | ||
import {Card, Paragraph} from 'react-native-paper'; | ||
import {ScrollView} from "react-native"; | ||
|
||
const Music = () => { | ||
return ( | ||
<ScrollView> | ||
<Card> | ||
<Card.Cover | ||
source={{ uri: "https://childbraininjurytrust.org.uk/wp-content/uploads/2020/04/Why-You-Love-Online-Quizzes-825x500-1.jpg" }} | ||
/> | ||
<Card.Content> | ||
<Paragraph> | ||
There are seven musical notes that are used in music theory and they are A, B, C, D, E, F and G, these are the only notes that in music notation. | ||
They are used for two different areas and they are for determining the tone, pitch and duration of the notes indicated on the stave. | ||
Each note has its own sound of tone that is completely different from any other notes and its pitch is based on where it is positioned on the stave. | ||
Musical Notes and Stave go hand in hand with each other because that’s where the notes are written on for the individual to read so they can understand what | ||
their playing. For example, the Musical Stave consists of five lines where the beginning note is Middle C, and it is positioned underneath the Musical Stave | ||
</Paragraph> | ||
<Paragraph> | ||
|
||
However, the principle of the concept stays the same. is used for indicating what note is written and the pitch of it. The notes move up the Stave then the pitch | ||
is raised and if it moves down then it’s lowered. For example, the note Middle C is positioned underneath the stave with a leger line within the note indicating | ||
its position in relation to the Musical Stave. | ||
</Paragraph> | ||
<Paragraph> | ||
Leger Lines are additional stave lines for when the notes pitch is higher or lower that’s what can be notated on the Musical Stave, so the leger lines are drawn either within, | ||
above or below relative to the notes name itself. | ||
</Paragraph> | ||
</Card.Content> | ||
</Card> | ||
</ScrollView> | ||
); | ||
}; | ||
|
||
export default Music; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters