diff --git a/README.md b/README.md
index 4629af2ac10..7e2f8d5ac44 100644
--- a/README.md
+++ b/README.md
@@ -79,7 +79,7 @@ PostHog brings all the tools and data you need to build better products.
### Data and infrastructure tools
- **Import and export your data:** Import from and export to the services that matter to you with [the PostHog CDP](https://posthog.com/docs/cdp)
-- **Ready-made libraries:** We’ve built libraries for [JavaScript](https://posthog.com/docs/integrations/js-integration), [Python](https://posthog.com/docs/integrations/python-integration), [Ruby](https://posthog.com/docs/integrations/ruby-integration), [Node](https://posthog.com/docs/integrations/node-integration), [Go](https://posthog.com/docs/integrations/go-integration), [Android](https://posthog.com/docs/integrations/android-integration), [iOS](https://posthog.com/docs/integrations/ios-integration), [PHP](https://posthog.com/docs/integrations/php-integration), [Flutter](https://posthog.com/docs/integrations/flutter-integration), [React Native](https://posthog.com/docs/integrations/react-native-integration), [Elixir](https://posthog.com/docs/integrations/elixir-integration), [Nim](https://github.com/Yardanico/posthog-nim), and an [API](https://posthog.com/docs/integrations/api) for anything else
+- **Ready-made libraries:** We’ve built libraries for [JavaScript](https://posthog.com/docs/libraries/js), [Python](https://posthog.com/docs/libraries/python), [Ruby](https://posthog.com/docs/libraries/ruby), [Node](https://posthog.com/docs/libraries/node), [Go](https://posthog.com/docs/libraries/go), [Android](https://posthog.com/docs/libraries/android), [iOS](https://posthog.com/docs/libraries/ios), [PHP](https://posthog.com/docs/libraries/php), [Flutter](https://posthog.com/docs/libraries/flutter), [React Native](https://posthog.com/docs/libraries/react-native), [Elixir](https://posthog.com/docs/libraries/elixir), [Nim](https://github.com/Yardanico/posthog-nim), and an [API](https://posthog.com/docs/api) for anything else
- **Plays nicely with data warehouses:** import events or user data from your warehouse by writing a simple transformation plugin, and export data with pre-built apps - such as [BigQuery](https://posthog.com/apps/bigquery-export), [Redshift](https://posthog.com/apps/redshift-export), [Snowflake](https://posthog.com/apps/snowflake-export), and [S3](https://posthog.com/apps/s3-expo)
[Read a full list of PostHog features](https://posthog.com/product).
diff --git a/cypress/e2e/featureFlags.cy.ts b/cypress/e2e/featureFlags.cy.ts
index 9f1c395493e..2d6b30aaabb 100644
--- a/cypress/e2e/featureFlags.cy.ts
+++ b/cypress/e2e/featureFlags.cy.ts
@@ -28,7 +28,7 @@ describe('Feature Flags', () => {
cy.get('[data-attr=feature-flag-doc-link]').should(
'have.attr',
'href',
- 'https://posthog.com/docs/integrations/php-integration?utm_medium=in-product&utm_campaign=feature-flag#feature-flags'
+ 'https://posthog.com/docs/libraries/php?utm_medium=in-product&utm_campaign=feature-flag#feature-flags'
)
// select "add filter" and "property"
diff --git a/frontend/src/scenes/feature-flags/FeatureFlagCodeOptions.tsx b/frontend/src/scenes/feature-flags/FeatureFlagCodeOptions.tsx
index 2d5d2c618d6..ebfe728f181 100644
--- a/frontend/src/scenes/feature-flags/FeatureFlagCodeOptions.tsx
+++ b/frontend/src/scenes/feature-flags/FeatureFlagCodeOptions.tsx
@@ -4,6 +4,7 @@ import {
AndroidSnippet,
APISnippet,
FeatureFlagSnippet,
+ FlutterSnippet,
GolangSnippet,
iOSSnippet,
JSBootstrappingSnippet,
@@ -39,28 +40,28 @@ export enum LibraryType {
export const OPTIONS: InstructionOption[] = [
{
value: 'JavaScript',
- documentationLink: `${DOC_BASE_URL}integrations/js-integration${UTM_TAGS}`,
+ documentationLink: `${DOC_BASE_URL}libraries/js${UTM_TAGS}`,
Snippet: JSSnippet,
type: LibraryType.Client,
key: SDKKey.JS_WEB,
},
{
value: 'Android',
- documentationLink: `${DOC_BASE_URL}integrate/client/android${UTM_TAGS}`,
+ documentationLink: `${DOC_BASE_URL}libraries/android${UTM_TAGS}`,
Snippet: AndroidSnippet,
type: LibraryType.Client,
key: SDKKey.ANDROID,
},
{
value: 'iOS',
- documentationLink: `${DOC_BASE_URL}integrate/client/ios${UTM_TAGS}`,
+ documentationLink: `${DOC_BASE_URL}libraries/ios${UTM_TAGS}`,
Snippet: iOSSnippet,
type: LibraryType.Client,
key: SDKKey.IOS,
},
{
value: 'React Native',
- documentationLink: `${DOC_BASE_URL}integrate/client/react-native${UTM_TAGS}`,
+ documentationLink: `${DOC_BASE_URL}libraries/react-native${UTM_TAGS}`,
Snippet: ReactNativeSnippet,
type: LibraryType.Client,
key: SDKKey.REACT_NATIVE,
@@ -74,21 +75,21 @@ export const OPTIONS: InstructionOption[] = [
},
{
value: 'Node.js',
- documentationLink: `${DOC_BASE_URL}integrations/node-integration${UTM_TAGS}`,
+ documentationLink: `${DOC_BASE_URL}libraries/node${UTM_TAGS}`,
Snippet: NodeJSSnippet,
type: LibraryType.Server,
key: SDKKey.NODE_JS,
},
{
value: 'Python',
- documentationLink: `${DOC_BASE_URL}integrations/python-integration${UTM_TAGS}`,
+ documentationLink: `${DOC_BASE_URL}libraries/python${UTM_TAGS}`,
Snippet: PythonSnippet,
type: LibraryType.Server,
key: SDKKey.PYTHON,
},
{
value: 'Ruby',
- documentationLink: `${DOC_BASE_URL}integrations/ruby-integration${UTM_TAGS}`,
+ documentationLink: `${DOC_BASE_URL}libraries/ruby${UTM_TAGS}`,
Snippet: RubySnippet,
type: LibraryType.Server,
key: SDKKey.RUBY,
@@ -102,18 +103,25 @@ export const OPTIONS: InstructionOption[] = [
},
{
value: 'PHP',
- documentationLink: `${DOC_BASE_URL}integrations/php-integration${UTM_TAGS}`,
+ documentationLink: `${DOC_BASE_URL}libraries/php${UTM_TAGS}`,
Snippet: PHPSnippet,
type: LibraryType.Server,
key: SDKKey.PHP,
},
{
value: 'Go',
- documentationLink: `${DOC_BASE_URL}integrations/go-integration${UTM_TAGS}`,
+ documentationLink: `${DOC_BASE_URL}libraries/go${UTM_TAGS}`,
Snippet: GolangSnippet,
type: LibraryType.Server,
key: SDKKey.GO,
},
+ {
+ value: 'Flutter',
+ documentationLink: `${DOC_BASE_URL}libraries/flutter${UTM_TAGS}`,
+ Snippet: FlutterSnippet,
+ type: LibraryType.Client,
+ key: SDKKey.FLUTTER,
+ },
]
export const LOCAL_EVALUATION_LIBRARIES: string[] = [SDKKey.NODE_JS, SDKKey.PYTHON, SDKKey.RUBY, SDKKey.PHP, SDKKey.GO]
diff --git a/frontend/src/scenes/feature-flags/FeatureFlagSnippets.tsx b/frontend/src/scenes/feature-flags/FeatureFlagSnippets.tsx
index 7bee754183d..54f8d6c1ff7 100644
--- a/frontend/src/scenes/feature-flags/FeatureFlagSnippets.tsx
+++ b/frontend/src/scenes/feature-flags/FeatureFlagSnippets.tsx
@@ -336,6 +336,17 @@ export function AndroidSnippet({ flagKey, multivariant, payload }: FeatureFlagSn
)
}
+export function FlutterSnippet({ flagKey }: FeatureFlagSnippet): JSX.Element {
+ return (
+
For more guidance, including on identifying users,{' '} - see PostHog Docs. + see PostHog Docs.
{currentTeamLoading && !currentTeam ? (You can use this write-only key in any one of{' '} - our libraries. + our libraries.