neumorphic 0.0.1 copy "neumorphic: ^0.0.1" to clipboard
neumorphic: ^0.0.1 copied to clipboard

discontinued
outdated

Neumorphic UI. Implementation of Neumorphism user interface consisting of sets of principles and widgets for the Flutter framework

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:neumorphic_example/screen.dart';

void main() => runApp(NeumorphicApp());

class NeumorphicApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) => MaterialApp(
        title: 'Neumorphic App',
        theme: ThemeData(
          primarySwatch: Colors.blue,
          backgroundColor: Color.lerp(Colors.grey[200], Colors.black, 0.005),
          scaffoldBackgroundColor: Colors.grey[200],
          dialogBackgroundColor: Colors.grey[300],
        ),
        home: Neumorphism(),
      );
}
228
likes
0
pub points
62%
popularity

Publisher

verified publisherserge.software

Neumorphic UI. Implementation of Neumorphism user interface consisting of sets of principles and widgets for the Flutter framework

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on neumorphic