spa_sdk 0.1.0 copy "spa_sdk: ^0.1.0" to clipboard
spa_sdk: ^0.1.0 copied to clipboard

SPA SDK for Flutter

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:spa_sdk/spa_sdk.dart';

void main() {
  runApp(const MyApp());
}

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  final SpaSdk _spaSdkPlugin = SpaSdk.instance(counterId: "613", uriServiceSpa: "");

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Actual plugin example'),
        ),
        body: const Center(
          child: Column(
            children: [
            ],
          ),
        ),
      ),
    );
  }
}
3
likes
115
points
1
downloads

Publisher

unverified uploader

Weekly Downloads

SPA SDK for Flutter

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

client_information, dio, flutter, location, uuid

More

Packages that depend on spa_sdk

Packages that implement spa_sdk