material-components-flutter
material-components-flutter copied to clipboard
Modular and customizable Material Design UI components for Flutter
Changing FlatButton to TextButton in all the page. Flutter new version no longer support FlatButton ## Thanks for starting a pull request on Material Components! #### Don't forget: - [...
chaging FlatButton to TextButton , For Flutter new version ## Thanks for starting a pull request on Material Components! #### Don't forget: - [ ] Are you sure you mean...
Changing FlatButton to TextButton to support new flutter version ## Thanks for starting a pull request on Material Components! #### Don't forget: - [ ] Are you sure you mean...
The current version of Dart in Dartpad gets an error on the existing example. This fix updates the example to specify the type for the dropdown value which resolves the...
changed "Using banners" to "Using dialogs" ## Thanks for starting a pull request on Material Components! #### Don't forget: - [x] Are you sure you mean this repo? This repository...
Example code: ```dart import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { const appTitle = 'Form...
The dev docs have a bunch of slightly different Shrine theme implementations, which are also suboptimal due to changes in the theming system. Write a single canonical Shrine theme and...
Large pieces of code are currently duplicated in markdown and .dart files * Code should only exist in .dart files, * this enables type-checking, code editing, interactive use; all obvious...
Not a simple replacement, some styling properties may be better in a theme (e.g. `TextButtonTheme`), others specified per component (e.g. `TextButtonStyle.from()`). See https://flutter.dev/docs/release/breaking-changes/buttons
# Steps to reproduce 1. Create a new Flutter project (increment template). 2. Add a `ListTile` into the `Column` in `MyHomePage`: ```dart ListTile( leading: Icon(Icons.warning), title: Text("This text moves to...