saicon 0.0.2 copy "saicon: ^0.0.2" to clipboard
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,
              ),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
135
points
28
downloads

Publisher

unverified uploader

Weekly Downloads

Sai Icons

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_svg

More

Packages that depend on saicon