See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
import 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; | |
class MyTextFormField extends StatelessWidget { | |
const MyTextFormField({ | |
@required this.editingController, | |
this.validator, | |
this.hintText, | |
this.icon, | |
this.enabled = true, |
See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs