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

# Flutter

> Flutter is an open source mobile app development framework created by Google. It uses the Dart programming language and allows developers to create cross-platform applications for Android and iOS using a single codebase.

export const Button = ({href, children}) => {
  return <div className="not-prose group mt-3">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-xl group-hover:opacity-[0.9] font-medium">
        <span>
          {children}
        </span>
      </button>
    </a>
  </div>;
};

## Solana Mobile Flutter SDK

The Solana Mobile Flutter SDK is an open source collection of Flutter plugins that brings the core SMS technologies like **Mobile Wallet Adapter** onto Flutter. It is actively maintained by the [Espresso Cash](https://www.espressocash.com/) team.

<Button href="https://github.com/espresso-cash/espresso-cash-public/tree/master">View on Github</Button>

<Note>
  **Note**

  The Solana Flutter SDK is a community-developed and maintained project and **it is not an official library**. Please be understanding if certain areas are still under development. Your contributions are always welcome to help address any issues you may encounter.

  Thank you to the [Espresso Cash](https://github.com/espresso-cash/espresso-cash-public/tree/master) team for your active maintenance of this library!
</Note>

### [Solana Dart Library](https://pub.dev/packages/solana)

Dart implementation of Solana JSON RPC API client. Provides convenient interface for the RPC methods.

### [Flutter Mobile Wallet Adapter](https://pub.dev/packages/solana_mobile_client)

Reference implementation of the Mobile Wallet Adapter (Client) specification for Flutter, providing the MWA API (authorization, signing, etc)

## Resources

### [Flutter Example dApp](https://github.com/espresso-cash/espresso-cash-public/tree/master/packages/solana_mobile_client/example)

An example Flutter app showing how to integrate Mobile Wallet Adapter and connect to wallets, enabling transaction signing and sending.

### [Basic Flutter dApp Tutorial](https://medium.com/@ronak01.raj/a-comphrensive-tutotial-building-dapps-with-flutter-and-solana-mobile-stack-sms-e452356a0adb)

A community tutorial showing how to use the Solana Dart libraries to build a simple Flutter dApp.

### Community

Join the community led [Solana Dart Discord](https://discord.gg/Q9aFs3Ydmd) to participate in discussion, ask technical questions, and stay tuned for developments.
