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

outdated

Windows95 UI components for Flutter apps

example/lib/main.dart

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

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

class Flutter95App extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      color: Flutter95.background,
      home: Scaffold95(
        title: 'Flutter95 v0.0.3',
        body: Column(
          children: <Widget>[
            Button95(
              onTap: () {},
              child: Text('Button95'),
            )
          ],
        ),
      ),
    );
  }
}
145
likes
0
pub points
40%
popularity

Publisher

verified publisherbeltran.work

Windows95 UI components for Flutter apps

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter95