> ## Documentation Index
> Fetch the complete documentation index at: https://stellaraddresskit.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Flutter: Deposit Addresses

> Displaying G and M addresses in your UI.

When displaying a deposit address to a user in Flutter, you should prioritize M-addresses for a better user experience.

## UI Example

```dart theme={null}
final routing = extractRouting(RoutingInput(
  address: "G...",
  memoId: "123",
));

// Display the "Friendly" address if available
Text(routing.address); // The G-address
Text(routing.routingId); // The Memo ID
```

## Copy to Clipboard

Always provide a copy button for both the address and the memo. If you are using an M-address, the user only needs to copy one string.
