From b38b0e4e3b10b197839fa002e593c8bb2def3c79 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Fri, 9 Apr 2021 16:16:47 +0200 Subject: [PATCH] fix: Typo --- CODE_STYLE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CODE_STYLE.md b/CODE_STYLE.md index 30a99f4b..90fd86ff 100644 --- a/CODE_STYLE.md +++ b/CODE_STYLE.md @@ -5,7 +5,7 @@ FluffyChat tries to be as minimal as possible even in the code style. We try to ### Directory Structure - `/lib/config/` Constants, styles and other configurations -- `/lib/controller/` Controller classes regarding the MVC separation +- `/lib/controllers/` Controller classes regarding the MVC separation - `/lib/l10n/` Localization files wi - `/lib/utils/` Helper functions and extensions - `/lib/views/` View classes and widgets @@ -65,7 +65,7 @@ class EnterNameView extends StatelessWidget { Widget build(BuildContext context) { return Scaffold( appBar: AppBar( - title: Text('Enter your name'), + title: Text('Your name: ${controller.name}'), ), body: Center( child: TextField(