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
Copy file name to clipboardExpand all lines: website/docs/introduction/getting_started.mdx
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,20 @@ or on [Zapp](https://zapp.run/new):
31
31
32
32
Riverpod comes as a main "riverpod" package that’s self-sufficient, complemented by optional packages for using code generation (<LinkdocumentID="concepts/about_code_generation" />) and hooks (<LinkdocumentID="concepts/about_hooks" />).
33
33
34
+
:::caution
35
+
For the sake of being compatible with the latest [json_serializable](https://pub.dev/packages/json_serializable) package, some Riverpod packages
36
+
are currently only compatible with Flutter's beta channel or later.
37
+
38
+
If `pub get` is failing due to version solving issues, consider switching to the beta channel by running:
39
+
40
+
```sh
41
+
flutter channel beta
42
+
```
43
+
44
+
Or consider downgrading Riverpod to `<3.1.0`.
45
+
:::
46
+
47
+
34
48
Once you know what package(s) you want to install, proceed to add the dependency to your app in a single line like this:
0 commit comments