Skip to main content
Version: 1.1.0

πŸ”Œ Flutter integration

  1. Add azeoo_sdk dependency β€” Installation
  2. await AzeooSDK.initialize(...)
  3. await AzeooSDK.connect(token:, gender:, height:, weight:) β€” token is a User JWT from your backend
  4. Embed UI with AzeooSDKContent or navigate with AzeooSDKModules

See Quick start.

import 'package:azeoo_sdk/core/app/azeoo_sdk_content.dart';

// Embed full SDK surface
Scaffold(body: AzeooSDKContent(bottomSafeArea: false));

// Or imperative navigation
AzeooSDKModules.nutrition.showMainScreen();

Wrap your app with any required ProviderScope / localization setup as in example/flutter_example.