ShaMan123 / react-native-math-view

Math view for react native! No WebView!
https://github.com/ShaMan123/react-native-math-view
MIT License
79 stars 25 forks source link

Styles #18

Closed nolife08021 closed 4 years ago

nolife08021 commented 4 years ago

How to change the font size?

<MathView
      color='white'
      style={{ fontSize:20}}
      math={'x=\\frac{-b\\pm\\sqrt{b^2-4ac}}{2a}'}
/>
ShaMan123 commented 4 years ago

From the top of my mind, try passing prop:

config={{ex: n}}

Take a look here: config

nolife08021 commented 4 years ago

Still can't

<MathView
     config={{ex: 50, em:50}}
     math={'x=\\frac{-b\\pm\\sqrt{b^2-4ac}}{2a}'}
 />
ShaMan123 commented 4 years ago

android or iOS or both?

nolife08021 commented 4 years ago

IOS

Android I haven't test yet.

ShaMan123 commented 4 years ago

OK. found it. About to bump version with the fix. You will probably have to pass

resizeMode="cover"
ShaMan123 commented 4 years ago

reinstall and check if it works.

nolife08021 commented 4 years ago

It works! Thanks @ShaMan123