lol_colors_flutter 0.0.3 copy "lol_colors_flutter: ^0.0.3" to clipboard
lol_colors_flutter: ^0.0.3 copied to clipboard

outdated

Flutter package for lolcolors page, based on web design rankings colors

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: LolColors.c4714_1,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        elevation: 0,
        title: Text("LOL COLORS"),
        // backgroundColor: LolColors.color_4714_1[600],
      ),
      body: Column(
        children: [
          Container(
            color: Colors.blue,
          ),
          Container(
            height: 150,
            width: 150,
            decoration: BoxDecoration(
              color: LolColors.c2209_3,
            ),
          ),
          Container(color: LolColors.c4714_1,)
        ],
      ),
    );
  }
}
1
likes
0
pub points
1%
popularity

Publisher

verified publisherdevef.com

Flutter package for lolcolors page, based on web design rankings colors

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on lol_colors_flutter