iconforest_arcticons 1.0.0+1 copy "iconforest_arcticons: ^1.0.0+1" to clipboard
iconforest_arcticons: ^1.0.0+1 copied to clipboard

Arcticons (Arctic icons) is a line-based icon pack forked from Frost for Android.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:iconforest_arcticons/arcticons.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

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

  final String title;

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

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        /// Arcticons icon example
        child: Arcticons(Arcticons.a3c_all_in_one_toolbox),
      ),
    );
  }
}
4
likes
110
pub points
12%
popularity

Publisher

unverified uploader

Arcticons (Arctic icons) is a line-based icon pack forked from Frost for Android.

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

cupertino_icons, flutter, flutter_svg, path

More

Packages that depend on iconforest_arcticons