Render playback text properly on Android
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user