flutter_smartlook 4.1.20 copy "flutter_smartlook: ^4.1.20" to clipboard
flutter_smartlook: ^4.1.20 copied to clipboard

Smartlook SDK wrapper for Flutter. Analyze user behavior in ways never possible before.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_smartlook/flutter_smartlook.dart';
import 'package:flutter_smartlook_example/initial_screen.dart';
import 'package:sizer/sizer.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();

  runApp(const CiscoSmartlookApp());
}

class CiscoSmartlookApp extends StatelessWidget {
  const CiscoSmartlookApp();

  @override
  Widget build(BuildContext context) {
    return Sizer(builder: (context, orientation, deviceType) {
      return SmartlookRecordingWidget(
        child: MaterialApp(
          debugShowCheckedModeBanner: false,
          //  navigatorObservers: [SmartlookObserver()],
          home: InitialScreen(),
        ),
      );
    });
  }
}
37
likes
120
pub points
96%
popularity

Publisher

verified publishersmartlook.com

Smartlook SDK wrapper for Flutter. Analyze user behavior in ways never possible before.

Homepage

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter, flutter_localizations, vector_math

More

Packages that depend on flutter_smartlook