fixes
This commit is contained in:
@@ -29,7 +29,7 @@ const STAGE_CARD_CONTENT = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: "beatmaker",
|
key: "beatmaker",
|
||||||
title: "Theo",
|
title: "Malik",
|
||||||
description: "Come back, when you'll have lyrics!",
|
description: "Come back, when you'll have lyrics!",
|
||||||
image: ai.rightIcon,
|
image: ai.rightIcon,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import React, { useMemo, useState } from "react";
|
import React, { useMemo, useState } from "react";
|
||||||
import { Platform, StyleSheet, View } from "react-native";
|
import { Platform, ScrollView, StyleSheet, View } from "react-native";
|
||||||
import ItemContainer from "../../components/ItemContainer/ItemContainer";
|
import ItemContainer from "../../components/ItemContainer/ItemContainer";
|
||||||
import ListSelection from "../../components/ListSelection/ListSelection";
|
import ListSelection from "../../components/ListSelection/ListSelection";
|
||||||
import { GOALS, OTHER_OBJECTIVE_OPTION } from "../../data/data";
|
import { GOALS, OTHER_OBJECTIVE_OPTION } from "../../data/data";
|
||||||
@@ -36,7 +36,7 @@ const Goals = ({
|
|||||||
// Selection handled by ListSelection
|
// Selection handled by ListSelection
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View style={{ flex: 1, gap: 16, marginTop: 16 }}>
|
<ScrollView contentContainerStyle={{ flex: 1, gap: 16, marginTop: 16 }}>
|
||||||
<View style={{ gap: 10 }}>
|
<View style={{ gap: 10 }}>
|
||||||
<CreateLyricsHeader
|
<CreateLyricsHeader
|
||||||
title="Étape 2: Quel est le contexte ?"
|
title="Étape 2: Quel est le contexte ?"
|
||||||
@@ -61,7 +61,7 @@ const Goals = ({
|
|||||||
setValue={handleOtherObjectiveChange}
|
setValue={handleOtherObjectiveChange}
|
||||||
height={Platform.OS === "web" ? 160 : undefined}
|
height={Platform.OS === "web" ? 160 : undefined}
|
||||||
/>
|
/>
|
||||||
</View>
|
</ScrollView>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -266,7 +266,7 @@ const Lyrics = ({ navigation }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Page
|
<Page
|
||||||
backgroundImg={isWeb ? background.writingBgWeb : background.writingBG}
|
backgroundImg={isWeb ? background.libraryBgWeb : background.writingBG}
|
||||||
headerType="NONE"
|
headerType="NONE"
|
||||||
>
|
>
|
||||||
<MusicLandHeader
|
<MusicLandHeader
|
||||||
|
|||||||
Reference in New Issue
Block a user