Initial commit

This commit is contained in:
admin1
2026-07-14 11:11:36 +08:00
commit 656499cf94
604 changed files with 119518 additions and 0 deletions
@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
import 'package:forui/forui.dart';
import 'android_detail_colors.dart';
class AndroidSectionDivider extends StatelessWidget {
const AndroidSectionDivider({super.key});
@override
Widget build(BuildContext context) => const Padding(
padding: EdgeInsets.symmetric(horizontal: 16),
child: FDivider(style: .delta(color: AndroidDetailColors.divider)),
);
}