Home

Awesome

Flutter95

Windows95 UI components for Flutter apps.

Screenshots

<img src="https://github.com/miquelbeltran/flutter95/raw/master/art/screenshot.png" alt="Screenshot" width="200"/>

Components

Scaffold95

Scaffold as a Windows95 styled window.

<img src="https://github.com/miquelbeltran/flutter95/raw/master/art/scaffold95_2.png" alt="Screenshot" width="200"/> <img src="https://github.com/miquelbeltran/flutter95/raw/master/art/scaffold95_1.png" alt="Screenshot" width="200"/>
Scaffold95(
  title: 'Flutter95',
  toolbar: Toolbar95(
    actions: [
      Item95(
        label: 'File', 
        onTap: () {},
      ),
    ],
  ),
  body: Container(),
)

Menu95

Windows95 styled menu.

<img src="https://github.com/miquelbeltran/flutter95/raw/master/art/menu95.png" alt="Screenshot" width="200"/>
Menu95(
  items: [
    MenuItem95(
      value: 1,
      label: 'New',
    ),
    MenuItem95(
      value: 2,
      label: 'Open',
    ),
    MenuItem95(
      value: 3,
      label: 'Exit',
    ),
  ],
  onItemSelected: (item) {},
);
menu.show(
  context,
  Offset(50, 100),
);
Item95(
  label: 'File',
  menu: Menu95(...),
),

Button95

Windows95 styled button.

Button95(
  onTap: () {},
  child: Text('Button95'),
)

Checkbox95

Windows95 styled checkbox

Checkbox95(
    value: value,
    label: "Some Label", // optional, if null no label is shown
    onChanged: (value) {}, // optional, if null acts as a disabled checkbox
)
<img src="https://github.com/miquelbeltran/flutter95/raw/master/art/checkbox95.png" alt="Checkbox95" width="200"/>

TextField95

TextField styled as a Windows95 text field.

TextField95()

Tooltip95

A tooltip widget designed in Windows95 style.

Tooltip95(
    message: 'Hello from Flutter95!',
    child: Text('I have a tooltip for you!'),
)
<img src="https://github.com/miquelbeltran/flutter95/raw/master/art/tooltip95.png" alt="Tooltip95" width="200"/>

Divider95

A divider widget designed in Windows95 style.

Divider95()
<img src="https://github.com/miquelbeltran/flutter95/raw/master/art/divider95.png" alt="Divider95" width="200"/>

Elevation95

Creates an effect of deepness and elevation around Widgets.

Elevation95(
  child: Text('Elevated Text')
)

Flutter95.textStyle

TextStyle ready to use that copies the Windows95 text style.

Text(
  'Text with Flutter95.textStyle',
  style: Flutter95.textStyle,
);

Dialogs

showDialog95(
  context: context,
  title: 'Error',
  message: 'Task failed successfully',
);
<img src="https://github.com/miquelbeltran/flutter95/raw/master/art/dialog.png" alt="Dialog" width="200"/>

Contributing

You can contribute in different ways:

Acknowledgments

Heavily inspired by React95.

Featured in My Windows 95 ChatGPT app by @filiph.