Replies: 1 comment
-
Hi, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
why next code dos'nt worked?
import React,{useState} from 'react';
import {Text, StyleSheet, View} from 'react-native';
export default function App(){
return(
hello world
);
}
const styles = StyleSheet.create({
baseText: {
textAlign: 'center', // <-- the magic
fontWeight: 'bold',
fontSize: 18,
marginTop: 0,
width: 200,
backgroundColor: 'yellow',
transform: [{scaleX: "-1"}]
}
});
Beta Was this translation helpful? Give feedback.
All reactions