Developer app basis

This commit is contained in:
2025-06-29 23:00:51 +08:00
parent 450d5ebc81
commit 356b7bf01a
15 changed files with 1813 additions and 92 deletions

View File

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