π Flutter integration
- Add
azeoo_sdkdependency β Installation await AzeooSDK.initialize(...)await AzeooSDK.connect(token:, gender:, height:, weight:)β token is a User JWT from your backend- Embed UI with
AzeooSDKContentor navigate withAzeooSDKModules
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.