neon 0.1.0 copy "neon: ^0.1.0" to clipboard
neon: ^0.1.0 copied to clipboard

A Flutter plugin that allows you to use beautiful neon signs in your app.

example/lib/main.dart

import 'package:example/choose_font_page.dart';
import 'package:example/flickering_page.dart';
import 'package:example/glowing_page.dart';
import 'package:flutter/material.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(
        brightness: Brightness.dark,
        primaryColor: Colors.lightBlue[800],
        accentColor: Colors.yellow,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  final String title;

  MyHomePage({Key key, this.title}) : super(key: key);

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
        body: PageView(
      children: <Widget>[ChooseFontPage(), GlowingPage(), FlickeringPage()],
    ));
  }
}
40
likes
120
pub points
78%
popularity

Publisher

verified publishergordin.dev

A Flutter plugin that allows you to use beautiful neon signs in your app.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

async, flutter

More

Packages that depend on neon