initial commit

This commit is contained in:
2026-02-08 11:04:35 +05:30
parent a1287b696a
commit e1be0429bd
24 changed files with 1041 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
//ignore_for_file: file_names
import "package:flutter/material.dart";
class SListTile extends StatelessWidget {
const SListTile(this.icon, this.title, this.route, {super.key});
final IconData icon;
final String title;
final String route;
@override
Widget build(BuildContext context) {
return ListTile(
leading: Icon(icon),
title: Text(title),
onTap: () {
Navigator.pushNamed(context, route);
},
);
}
}