Skip to content
#

state-management

Here are 2,100 public repositories matching this topic...

dapr
bloc
platform
effector
vanniewelt
vanniewelt commented May 14, 2021

Correct me if I'm wrong, but it seems to me that different effector-vue APIs (especially Options API vs. Hooks API) assume different Vue versions.

For example, I tried to use Hooks API in combination with Vue 2 & @vue/composition-api but it won't compile because it tries to import composition functions directly from vue module (as in Vue 3) instead of @vue/compositon-api module (as in V

mateuszobara
mateuszobara commented Dec 11, 2021

Hi I am using NGXS state managment library in my App and I have selector like below and everything is working fine but when I am testing my app I have got error like below. PrintItemsState is lazy loaded and in *.spec.ts NGXS module is imported like NgxsModule.forRoot() . What I noticed problem is that im passing PrintItemsState as argument here:

@Selector([PrintItemsState])

![image](https

rgazelot
rgazelot commented Jan 6, 2021

Hello, I'm trying to type my application which is using redux-orm. I came across an issue with the new createSelector API. My code is as simple as:

import { createSelector } from 'redux-orm'
import orm from 'features/regulation/orm'

export const selectTest = createSelector(orm.Policy)

The error I get is that

Expected 2-9 arguments, but got 1.ts(2554)
redux.d.ts(87, 
river_pod
yelliver
yelliver commented Dec 30, 2021

Describe what scenario you think is uncovered by the existing examples/articles
When clicking on an item, that TodoItem widget is rebuilt 2 times in a row

Describe why existing examples/articles do not cover this case
Line 263 of main.dart:

child: ListTile(
  onTap: () {
    itemFocusNode.requestFocus();        //this makes the widget rebuilt 1st time
    textFieldFocusNode.r
drewg233
drewg233 commented Apr 25, 2018

I have a very big app and do not want to make a placeholder for each screen I would like to provide context to about what is loading. (And also do not want a general 'loading' message). Is there currently a way to change the title/subtitle easily for each ViewController, from the ViewController itself?

Improve this page

Add a description, image, and links to the state-management topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the state-management topic, visit your repo's landing page and select "manage topics."

Learn more