games_services 0.0.5 copy "games_services: ^0.0.5" to clipboard
games_services: ^0.0.5 copied to clipboard

outdated

A new Flutter plugin to support game center and google play games services.

example/lib/main.dart

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

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
          appBar: AppBar(
            title: const Text('Games Services plugin example app'),
          ),
          body: Center(
            child: Column(
              children: <Widget>[
                RaisedButton(
                  child: Text('signIn'),
                  onPressed: () {
                    GamesServices.signIn();
                  },
                ),
                RaisedButton(
                  child: Text('silentSignIn'),
                  onPressed: () {
                    GamesServices.silentSignIn();
                  },
                ),
                RaisedButton(
                  child: Text('Show Achievements'),
                  onPressed: () {
                    GamesServices.showAchievements();
                  },
                ),
                RaisedButton(
                  child: Text('Show Leaderboards'),
                  onPressed: () {
                    GamesServices.showLeaderboards(leaderboardID: '');
                  },
                ),
                RaisedButton(
                  child: Text('Submit Score'),
                  onPressed: () {
                    GamesServices.submitScore(leaderboardID: '', score: 1);
                  },
                ),
                RaisedButton(
                  child: Text('Unlock'),
                  onPressed: () {
                    GamesServices.unlock(achievementID: '', percentComplete: 0);
                  },
                ),
              ],
            ),
          )),
    );
  }
}
158
likes
0
points
2.92k
downloads

Publisher

verified publisherakdebuging.com

Weekly Downloads

A new Flutter plugin to support game center and google play games services.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on games_services