flutter_sficon 1.1.2 copy "flutter_sficon: ^1.1.2" to clipboard
flutter_sficon: ^1.1.2 copied to clipboard

Cross-platform Flutter plugin for rendering tree shakable SF Symbols version 5.1. inside custom widget, based on Text widget.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_sficon/flutter_sficon.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text(widget.title),
      ),
      body: Center(
        child: IconTheme(
          data: IconThemeData(color: Theme.of(context).colorScheme.primary),
          child: const Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
              SFIcon(
                SFIcons.sf_chevron_backward,
                fontSize: 40,
                fontWeight: FontWeight.w100,
              ),
              SFIcon(
                SFIcons.sf_chevron_backward,
                fontSize: 40,
                fontWeight: FontWeight.w200,
              ),
              SFIcon(
                SFIcons.sf_chevron_backward,
                fontSize: 40,
                fontWeight: FontWeight.w300,
              ),
              SFIcon(
                SFIcons.sf_chevron_backward,
                fontSize: 40,
                fontWeight: FontWeight.w400,
              ),
              SFIcon(
                SFIcons.sf_chevron_backward,
                fontSize: 40,
                fontWeight: FontWeight.w500,
              ),
              SFIcon(
                SFIcons.sf_chevron_backward,
                fontSize: 40,
                fontWeight: FontWeight.w600,
              ),
              SFIcon(
                SFIcons.sf_chevron_backward,
                fontSize: 40,
                fontWeight: FontWeight.w700,
              ),
              SFIcon(
                SFIcons.sf_chevron_backward,
                fontSize: 40,
                fontWeight: FontWeight.w800,
              ),
              SFIcon(
                SFIcons.sf_chevron_backward,
                fontSize: 40,
                fontWeight: FontWeight.w900,
              ),
            ],
          ),
        ),
      ),
    );
  }
}
3
likes
150
pub points
70%
popularity

Publisher

unverified uploader

Cross-platform Flutter plugin for rendering tree shakable SF Symbols version 5.1. inside custom widget, based on Text widget.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_sficon