17 lines
457 B
Dart
17 lines
457 B
Dart
// ignore_for_file: file_names
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:tim_ui_kit/tim_ui_kit.dart';
|
|
|
|
class TIMUIKitProfileExample extends StatelessWidget {
|
|
final String? userID;
|
|
const TIMUIKitProfileExample({Key? key, this.userID}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return TIMUIKitProfile(
|
|
userID: userID ?? "10040818", // Please fill in here according to the actual cleaning
|
|
);
|
|
}
|
|
}
|