You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 17, 2020. It is now read-only.
.//lib/src/document_form.dart: List _buildFormFields(BuildContext context) {
.//lib/src/document_list_view.dart: List _buildTitleRowChildren(Document doc) {
.//lib/src/document_list_view.dart: Widget _buildSubtitle(Document doc) {
Using _build* functions in this matter is considered an anti-pattern. It is just as easy to create stateless widgets. The idea is that the stateless widgets will just be moved around in the widget tree, and won;t be rebuilt unless needed.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
.//lib/src/document_form.dart: List _buildFormFields(BuildContext context) {
.//lib/src/document_list_view.dart: List _buildTitleRowChildren(Document doc) {
.//lib/src/document_list_view.dart: Widget _buildSubtitle(Document doc) {
Using _build* functions in this matter is considered an anti-pattern. It is just as easy to create stateless widgets. The idea is that the stateless widgets will just be moved around in the widget tree, and won;t be rebuilt unless needed.
The text was updated successfully, but these errors were encountered: