saicon 1.0.3 copy "saicon: ^1.0.3" to clipboard
saicon: ^1.0.3 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: [
              SaIcons.home(),
              SaIcons.search(),
              SaIcons.notification(),
              SaIcons.person(),
              SaIcons.settings(),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
130
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