resonant_ui 0.0.1
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),
],
),
);
}
}