17 lines
389 B
Dart
17 lines
389 B
Dart
// ignore_for_file: file_names
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:tim_ui_kit/tim_ui_kit.dart';
|
|
|
|
class TIMUIKitAddGroupExample extends StatelessWidget {
|
|
const TIMUIKitAddGroupExample({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return TIMUIKitAddGroup(
|
|
onTapExistGroup: (groupID, conversation) {
|
|
},
|
|
);
|
|
}
|
|
}
|