:drunk: Werid miniapp runtime

This commit is contained in:
2026-01-18 13:31:45 +08:00
parent fa0051b606
commit 639417e952
33 changed files with 6437 additions and 3 deletions

File diff suppressed because one or more lines are too long

31
packages/miniapp-minimal/.gitignore vendored Normal file
View File

@@ -0,0 +1,31 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
**/doc/api/
.dart_tool/
.flutter-plugins-dependencies
/build/
/coverage/

View File

@@ -0,0 +1,10 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: "8b872868494e429d94fa06dca855c306438b22c0"
channel: "stable"
project_type: package

View File

@@ -0,0 +1,4 @@
include: package:flutter_lints/flutter.yaml
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options

View File

@@ -0,0 +1,43 @@
import 'package:flutter/material.dart';
Widget buildEntry() {
return const MinimalTextWidget();
}
class MinimalTextWidget extends StatefulWidget {
const MinimalTextWidget({super.key});
@override
State<MinimalTextWidget> createState() => _MinimalTextWidgetState();
}
class _MinimalTextWidgetState extends State<MinimalTextWidget> {
int _tapCount = 0;
final List<String> _messages = ['Tap me!', 'Hello!', 'Thanks for tapping!'];
String get _currentMessage => _messages[_tapCount % _messages.length];
void _handleTap() {
setState(() {
_tapCount++;
});
}
@override
Widget build(BuildContext context) {
return Center(
child: GestureDetector(
onTap: _handleTap,
child: Container(
padding: const EdgeInsets.all(24),
decoration: BoxDecoration(borderRadius: BorderRadius.circular(12)),
child: Text(
_currentMessage,
style: const TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
),
),
),
);
}
}

View File

@@ -0,0 +1,54 @@
name: miniapp_minimal
description: "A new Flutter package project."
version: 0.0.1
homepage:
environment:
sdk: ^3.10.7
flutter: ">=1.17.0"
dependencies:
flutter:
sdk: flutter
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^6.0.0
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter packages.
flutter:
# To add assets to your package, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
#
# For details regarding assets in packages, see
# https://flutter.dev/to/asset-from-package
#
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/to/resolution-aware-images
# To add custom fonts to your package, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts in packages, see
# https://flutter.dev/to/font-from-package