farcaster_sdk 0.0.4  farcaster_sdk: ^0.0.4 copied to clipboard
farcaster_sdk: ^0.0.4 copied to clipboard
This library allows you to call different Farcaster APIs to build your native app based on Farcaster! Currently working only with Warpcast API.
import 'package:farcaster_sdk/warpcast/farcaster_warpcast_client.dart';
import 'package:farcaster_sdk_example/pages/home_page.dart';
import 'package:flutter/material.dart';
void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const MyApp());
}
class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Farcaster SDK demo',
      theme: ThemeData(
        useMaterial3: true,
        brightness: Brightness.dark,
      ),
      debugShowCheckedModeBanner: false,
      home: const HomePage(),
    );
  }
}