Bot key management

This commit is contained in:
2025-08-23 23:35:37 +08:00
parent 6f4f1216ad
commit 3959f2260b
11 changed files with 938 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
import 'package:flutter/material.dart';
import 'package:island/screens/developers/edit_bot.dart';
class NewBotScreen extends StatelessWidget {
final String publisherName;
final String projectId;
const NewBotScreen({super.key, required this.publisherName, required this.projectId});
@override
Widget build(BuildContext context) {
return EditBotScreen(publisherName: publisherName, projectId: projectId);
}
}