> For the complete documentation index, see [llms.txt](https://la-guia.platan.us/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://la-guia.platan.us/stack/mobile/styling.md).

# Styling

Para poder darle estilo a tus componentes y que tu aplicación se vea reluciente, existen distintas opciones:

* Tailwind: Es posible usar tailwind en React Native usando la librería `tailwind-rn`. Tenemos una guía sobre cómo utilizar la librería:

  [Usando Tailwind en React Native](/stack/mobile/styling/usando_tailwind_en_react_native.md)
* [Stylesheets](https://reactnative.dev/docs/stylesheet): este es el método propuesto por React Native. Los estilos se escriben en un objeto y se pasan como prop a cada componente.
* [Styled Components](https://styled-components.com/docs/basics#react-native): librería muy utilizada en React y que puede ser utilizada también en React Native. Los estilos se escriben en un multi-line string lo que lo hace un poco más parecido a CSS.
