feat: initialize Flutter project with version management

- Initialize Flutter 3.38 project with all platforms
- Add build-time version generation from pubspec.yaml
- Print version to console on app startup
- Create CHANGELOG.md following Keep a Changelog format
- Update .gitignore for Flutter + generated files
- Basic app scaffold with Material 3 theming

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-30 16:09:36 +01:00
co-authored by Claude Opus 4.5
parent a535a99541
commit b4ec857a8f
127 changed files with 4666 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:tatlock_ui/main.dart';
void main() {
testWidgets('App renders home page', (WidgetTester tester) async {
await tester.pumpWidget(const TatlockApp());
expect(find.text('Tatlock UI'), findsOneWidget);
expect(find.text('Welcome to Tatlock UI'), findsOneWidget);
});
}