Render playback text properly on Android

This commit is contained in:
Lei Nelissen
2022-05-19 23:05:28 +02:00
parent 0fc087e832
commit 8678e3d881

View File

@@ -1,16 +1,14 @@
import { t } from '@localisation';
import React from 'react';
import { Text } from 'react-native';
import styled from 'styled-components/native';
const Button = styled.View`
margin: 20px 40px;
const Label = styled.Text`
font-size: 13px;
`;
function Casting() {
return (
<Button>
<Text>Local Playback</Text>
</Button>
<Label>{t('local-playback')}</Label>
);
}