This commit is contained in:
Hillel Coren 2018-08-30 10:26:36 -07:00
parent 2a7ca521f1
commit 3bed56f0f4
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ class _StubEditState extends State<StubEdit> {
// STARTER: controllers - do not remove comment
var _controllers = [];
List<TextEditingController> _controllers = [];
@override
void didChangeDependencies() {

View File

@ -46,7 +46,7 @@ class StubEditVM {
});
factory StubEditVM.fromStore(Store<AppState> store) {
final stub = store.state.stubUIState.selected;
final stub = store.state.stubUIState.editing;
return StubEditVM(
isLoading: store.state.isLoading,