ui_kit/example/lib/icons_section.dart
2025-05-26 11:24:19 +03:00

16 lines
332 B
Dart

import 'package:flutter/material.dart';
class IconsSection extends StatefulWidget {
const IconsSection({super.key});
@override
State<IconsSection> createState() => _IconsSectionState();
}
class _IconsSectionState extends State<IconsSection> {
@override
Widget build(BuildContext context) {
return Scaffold();
}
}