Заранее спасибо за внимание! Есть код,
import React from 'react';
import { StyleSheet, Text, View, Button, Alert, Image,ImageBackground } from 'react-native'; // Методы которые используются
//https://saibashi.ru/catalog/pizza/jalutorovsk
const App = () => {
return (
<View style={styles.container}>
<View style={styles.ButtonMenu}>
<Button color="#000000" //Цвет
// disabled
title="☰ Меню"
// onPress={() => Alert.alert('Left button pressed')} // При нажатие на кнопку
/>
<Button color="#000000" //Цвет
// disabled
title="☰ Меню"
// onPress={() => Alert.alert('Left button pressed')} // При нажатие на кнопку
/>
</View>
</View>
);
};
const styles = StyleSheet.create({
ButtonMenu: { // Кнопка
left: -29, // В право
// backgroundColor: 'rgb(255, 115, 0)', //Цвет
marginTop: 40, // Отсуп с сверху
width: 150, // Ширина
//height: 50, // Вниз
// borderRadius: 15, // Форма
//borderWidth: 2, // Закрашивание рамки
//borderColor: 'rgb(255, 115, 0)',
}
});
export default App
приложение с кнопкой, когда хочу добавить еще кнопку она становиться ниже. Как сделать так что бы две кнопки были на одном уровне