push_restapi_dart 0.3.0-alpha copy "push_restapi_dart: ^0.3.0-alpha" to clipboard
push_restapi_dart: ^0.3.0-alpha copied to clipboard

Push SDK provides an abstraction layer to integrate Push protocol features with your Frontend as well as Backend.

example/lib/main.dart

import '__lib.dart';

void main() async {
  runApp(
    ProviderScope(
      child: const MyApp(),
    ),
  );
}

final pushColor = Color(0xFFD43A94);

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return GetMaterialApp(
      theme: ThemeData(
        primaryColor: pushColor,
        appBarTheme: AppBarTheme(backgroundColor: pushColor),
        tabBarTheme: TabBarTheme(
          labelColor: pushColor,
          indicatorColor: pushColor,
          unselectedLabelColor: pushColor,
          indicator: BoxDecoration(
            border: Border(bottom: BorderSide(color: pushColor, width: 2)),
          ),
        ),
      ),
      home: HomeScreen(),
    );
  }
}
4
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Push SDK provides an abstraction layer to integrate Push protocol features with your Frontend as well as Backend.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

crypto, cryptography, dart_pg, encrypt, ethereum_addresses, flutter, flutter_riverpod, flutter_webrtc, hex, http, livekit_client, openpgp, pointycastle, riverpod, socket_io_client, uuid

More

Packages that depend on push_restapi_dart