# 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://la-guia.platan.us/stack/mobile/styling.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
