Flutter实现直播间礼物收发

简介: 下面是一个简单的礼物发送系统的实现代码,包括支持连送和单次送等功能

下面是一个简单的礼物发送系统的实现代码,包括支持连送和单次送等功能:

import 'package:flutter/material.dart';
class Gift {
  final String name;
  final int count;
  Gift(this.name, this.count);
}
class GiftSendingScreen extends StatefulWidget {
  const GiftSendingScreen({Key? key}) : super(key: key);
  @override
  _GiftSendingScreenState createState() => _GiftSendingScreenState();
}
class _GiftSendingScreenState extends State<GiftSendingScreen> {
  List<Gift> _gifts = [
    Gift('Heart', 1),
    Gift('Rose', 1),
    Gift('Candy', 1),
    Gift('Teddy Bear', 5),
    Gift('Diamond Ring', 10),
  ];
  Gift? _selectedGift;
  int _sendingCount = 1;
  bool _isSendingContinuously = false;
  void _sendGift() {
    if (_selectedGift != null) {
      for (int i = 0; i < _sendingCount; i++) {
        // simulate sending gift to server
        print('Sending gift ${_selectedGift!.name}...');
      }
      if (_isSendingContinuously) {
        // continue sending gifts after a delay
        Future.delayed(Duration(seconds: 1), () {
          _sendGift();
        });
      }
    }
  }
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Send Gift'),
      ),
      body: Column(
        crossAxisAlignment: CrossAxisAlignment.stretch,
        children: [
          DropdownButtonFormField<Gift>(
            decoration: InputDecoration(
              labelText: 'Select a gift',
            ),
            value: _selectedGift,
            onChanged: (gift) {
              setState(() {
                _selectedGift = gift;
              });
            },
            items: _gifts
                .map(
                  (gift) => DropdownMenuItem<Gift>(
                    value: gift,
                    child: Text('${gift.name} (${gift.count})'),
                  ),
                )
                .toList(),
          ),
          TextFormField(
            keyboardType: TextInputType.number,
            decoration: InputDecoration(
              labelText: 'Sending count',
            ),
            initialValue: '1',
            onChanged: (value) {
              setState(() {
                _sendingCount = int.tryParse(value) ?? 0;
              });
            },
          ),
          Row(
            children: [
              Checkbox(
                value: _isSendingContinuously,
                onChanged: (value) {
                  setState(() {
                    _isSendingContinuously = value ?? false;
                  });
                },
              ),
              Text('Send continuously'),
            ],
          ),
          ElevatedButton(
            onPressed: _sendGift,
            child: Text('Send'),
          ),
        ],
      ),
    );
  }
}

在这个示例中,我们使用了 Flutter 的 DropdownButtonFormFieldTextFormField 等组件来获取用户选择的礼物和发送数量。我们还使用了 Checkbox 组件来允许用户选择是否连续发送礼物。在 _sendGift() 方法中,我们模拟将礼物发送到服务器,并且如果用户选择了连续发送,我们将延迟一秒钟后再次调用该方法以持续发送礼物。

以下是一个简单的收到礼物系统的实现代码,支持展示连送和单次送等数量:

import 'package:flutter/material.dart';
class ReceivedGift {
  final String name;
  final int count;
  ReceivedGift(this.name, this.count);
}
class GiftReceivingScreen extends StatefulWidget {
  const GiftReceivingScreen({Key? key}) : super(key: key);
  @override
  _GiftReceivingScreenState createState() => _GiftReceivingScreenState();
}
class _GiftReceivingScreenState extends State<GiftReceivingScreen> {
  List<ReceivedGift> _receivedGifts = [];
  void _receiveGift(ReceivedGift gift) {
    setState(() {
      // check if the same gift is already received
      var existingGift = _receivedGifts.firstWhere(
        (g) => g.name == gift.name,
        orElse: () => null,
      );
      if (existingGift != null) {
        // increment count of existing gift
        _receivedGifts[_receivedGifts.indexOf(existingGift)] =
            ReceivedGift(gift.name, existingGift.count + gift.count);
      } else {
        // add new gift to received gifts list
        _receivedGifts.add(gift);
      }
    });
  }
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Received Gifts'),
      ),
      body: ListView.builder(
        itemCount: _receivedGifts.length,
        itemBuilder: (BuildContext context, int index) {
          var receivedGift = _receivedGifts[index];
          // build text based on number of gifts received
          var text = '${receivedGift.name} received';
          if (receivedGift.count > 1) {
            text += ' (${receivedGift.count}';
            text += receivedGift.count > 2 ? ' times)' : ' time)';
          }
          return ListTile(
            title: Text(text),
          );
        },
      ),
    );
  }
}

在这个示例中,我们使用了一个 _receivedGifts 列表来追踪用户收到的礼物。在 _receiveGift() 方法中,我们检查是否已经收到过相同的礼物,如果是,则增加现有礼物的数量;否则,将新礼物添加到列表中。

build() 方法中,我们使用 ListView.builder 来构建收到的礼物列表,并根据礼物数目构建展示文本。例如,如果用户收到多次相同礼物,则文本为“礼物名称接收(次数)”。

相关文章
|
2月前
|
开发工具
uniapp, 短剧视频类App实现参考,支持滑动播放,仿抖音 仿陌陌 短视频 无限滑动播放 视频流
阿里云点播服务web播放器sdk,短剧视频类App实现参考。仿抖音 仿陌陌 短视频 无限滑动播放 视频流。无uniapp video 原生组件的层级、遮挡、覆盖问题,适合与不同功能视图组合使用,实现丰富的应用功能。
uniapp, 短剧视频类App实现参考,支持滑动播放,仿抖音 仿陌陌 短视频 无限滑动播放 视频流
|
3月前
|
编解码 Dart 网络协议
"震撼揭秘!Flutter如何玩转超低延迟RTSP/RTMP播放,跨平台视频流体验大升级,让你的应用秒变直播神器!"
【8月更文挑战第15天】Flutter作为跨平台UI框架,以其高效性和丰富生态著称。本文详述如何利用flutter_vlc_player等插件在Flutter中实现低延迟RTSP/RTMP播放,并提供代码示例。通过优化播放器设置,如禁用缓冲、启用帧丢弃等,可进一步减少延迟,提升用户观看体验,展现了Flutter在视频流媒体应用中的强大潜力。
78 0
|
5月前
|
开发工具
抖音sdk接口,抖音粉丝或好友收发消息
抖音sdk接口,抖音粉丝或好友收发消息
uniapp 微信语音播放功能(整理)
uniapp 微信语音播放功能(整理)
直播源码搭建技术弹幕消息功能的实现
今天我要分享的这个直播源码技术功能也是大家非常常见的,这个功能不仅仅应用在直播源码平台中,在各大影视app中也一直被应用,那这个功能是什么那?
直播源码搭建技术弹幕消息功能的实现
请问 uniapp怎么接入直播互动消息
请问 uniapp怎么接入直播互动消息
371 2
请问 uniapp怎么接入直播互动消息
|
消息中间件 视频直播 数据安全/隐私保护
短视频直播系统,构建礼物模块需注意的问题
短视频直播系统,构建礼物模块需注意的问题
|
编解码 前端开发 Java
秘乐短视频系统丨秘乐短视频系统开发(详细及案例)丨秘乐短视频开发源码功能
 VideoPlayerManager-https://github.com/danylovolokh/VideoPlayerManager介绍:帮助控制MediaPlayer类的项目。可以方便的在ListView和RecyclerView中使用MediaPlayer。它还能跟踪滚动列表当前可视范围最大的item,并提供回调的api。
|
开发框架 开发工具
使用融云SDK在APICloud 平台实现单人多人音频通话
使用融云SDK在APICloud 平台实现单人多人音频通话,使用之前必须先获取 token、init、connect,同时需要到融云后台开通音视频通话功能(开通或者关闭 30 分钟后生效)。单人通话逻辑比较简单,主要会用到 didReceiveCall、didConnect、didDisconnect 等三个事件。
228 0
|
开发工具
使用融云SDK在APICloud平台实现单人多人音频通话
使用之前必须先获取token、init、connect,同时需要到融云后台开通音视频通话功能(开通或者关闭30分钟后生效)。单人通话逻辑比较简单,主要会用到didReceiveCall、didConnect、didDisconnect等三个事件。多人通话逻辑复杂一点,并且只能应用在群组或者讨论组,会用到didReceiveCall、didConnect、remoteUserDidJoin、remoteUserDidLeft、remoteUserDidInvite、didDisconnect等六个事件。
176 0
使用融云SDK在APICloud平台实现单人多人音频通话