unofficial_twitch_open_api 0.0.3 copy "unofficial_twitch_open_api: ^0.0.3" to clipboard
unofficial_twitch_open_api: ^0.0.3 copied to clipboard

Wrapper for the newest Twitch API. It returns informations about channels, media, search and game

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:unofficial_twitch_open_api/channel_information/model/open_api_channel_information_response.dart';
import 'package:unofficial_twitch_open_api/channel_information/twitch_channel_information.dart';
import 'package:unofficial_twitch_open_api/twitch_manager_open_api.dart';

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

class AppExample extends StatelessWidget {
  const AppExample({
    Key? key,
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'unofficial_twitch_open_api Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const OpenApiExampleWidget(),
    );
  }
}

class OpenApiExampleWidget extends StatefulWidget {
  const OpenApiExampleWidget({Key? key}) : super(key: key);

  @override
  _OpenApiExampleWidgetState createState() => _OpenApiExampleWidgetState();
}

class _OpenApiExampleWidgetState extends State<OpenApiExampleWidget> {
  TwitchManagerOpenApi? manager;
  List<ChannelInformationResult> infoResult = [];

  @override
  void initState() {
    manager = TwitchManagerOpenApi(
      clientId: 'your_secret_client_id',
    );
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        children: [
          ElevatedButton(
            onPressed: () async {
              final channelInfo = manager?.of<TwitchChannelInformation>(
                bearerToken: 'your_secret_token',
              );

              final responseInfo = await channelInfo?.getChannelInformation(
                broadcasterId: 'broadcaster_id',
              );

              setState(() {
                infoResult = responseInfo?.result?.channelList ?? [];
              });
            },
            child: const Text('Get random info'),
          ),
          const SizedBox(height: 16),
          ListView.separated(
            separatorBuilder: (_, __) => const Divider(),
            itemBuilder: (_, index) => ChannelInfoWidget(
              infoResult[index],
            ),
            shrinkWrap: true,
            itemCount: infoResult.length,
          ),
        ],
      ),
    );
  }
}

class ChannelInfoWidget extends StatelessWidget {
  final ChannelInformationResult informationChannel;

  const ChannelInfoWidget(
    this.informationChannel, {
    Key? key,
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Column(
      children: [
        Text(informationChannel.title ?? ''),
        const SizedBox(height: 2),
        Text(informationChannel.gameName ?? ''),
        const SizedBox(height: 2),
        Text(informationChannel.broadcasterLanguage ?? ''),
      ],
    );
  }
}
6
likes
130
pub points
11%
popularity

Publisher

verified publisherfedericoviceconti.com

Wrapper for the newest Twitch API. It returns informations about channels, media, search and game

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http, unofficial_twitch_http

More

Packages that depend on unofficial_twitch_open_api