Translate infra & post translation

This commit is contained in:
2025-03-16 23:05:07 +08:00
parent e5212419ae
commit aecd04e0b9
10 changed files with 297 additions and 90 deletions

View File

@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
import 'package:surface/widgets/navigation/app_scaffold.dart';
class AccountNotifyPrefsScreen extends StatelessWidget {
const AccountNotifyPrefsScreen({super.key});
@override
Widget build(BuildContext context) {
return AppScaffold();
}
}