lucide_flutter 0.544.0 copy "lucide_flutter: ^0.544.0" to clipboard
lucide_flutter: ^0.544.0 copied to clipboard

A Flutter package providing Lucide icons.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:lucide_flutter/lucide_flutter.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),
      ),
      home: const MyPage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [Icon(LucideIcons.github), Icon(LucideIcons.star)],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: () {},
        child: const Icon(LucideIcons.plus),
      ),
    );
  }
}
2
likes
150
points
1.16k
downloads

Publisher

verified publisherjasonlessenich.dev

Weekly Downloads

A Flutter package providing Lucide icons.

Repository (GitHub)
View/report issues

Topics

#lucide #icons #flutter

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on lucide_flutter