saicon 0.0.2
saicon: ^0.0.2 copied to clipboard
Sai Icons
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:saicon/saicon.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('SAI Icons Example'),
),
body: Center(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Icon(
SaiIcons.home, // Example icon
size: 50.0,
color: Colors.red,
),
Icon(
SaiIcons.settings, // Example icon
size: 50.0,
color: Colors.green,
),
Icon(
SaiIcons.profile, // Example icon
size: 50.0,
color: Colors.blue,
),
],
),
),
),
);
}
}