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

To evoke a fealing of shared emotion or belief with someone.

example/resonant_ui_example.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(
        primaryColor: Colors.black,
      ),
      home: ExampleView(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: ListView(
        padding: const EdgeInsets.symmetric(horizontal: 25, vertical: 30),
        children: [
          Text('Design System'),
          Container(height: 10),
          Divider(),
          Container(height: 10),
        ],
      ),
    );
  }
}
0
likes
140
points
8
downloads

Publisher

unverified uploader

Weekly Downloads

To evoke a fealing of shared emotion or belief with someone.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter, font_awesome_flutter, mr_skeleton

More

Packages that depend on resonant_ui