adcio_placement 0.1.4 copy "adcio_placement: ^0.1.4" to clipboard
adcio_placement: ^0.1.4 copied to clipboard

discontinued

This is the placement service for the ADCIO project in Flutter.

example/lib/main.dart

// ignore_for_file: use_build_context_synchronously

import 'package:adcio_core/adcio_core.dart';
import 'package:adcio_placement/adcio_placement.dart';
import 'package:flutter/material.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();

  /// this is important to call `AdcioCore.initializeApp(clientId: 'ADCIO_STORE_ID')` function.
  await AdcioCore.initializeApp(
    clientId: 'f8f2e298-c168-4412-b82d-98fc5b4a114a',
  );

  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const HomePage(),
    );
  }
}

class HomePage extends StatefulWidget {
  const HomePage({super.key});

  @override
  State<HomePage> createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
  AdcioSuggestionRawData? rawData;

  @override
  void initState() {
    super.initState();

    ///
    /// call adcioSuggest() here
    adcioSuggest(
      placementId: '67592c00-a230-4c31-902e-82ae4fe71866',
    ).then((value) {
      rawData = value;
      setState(() {});
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('ADCIO placement demo'),
        actions: [
          IconButton(
            onPressed: () {
              adcioSuggest(
                placementId: '67592c00-a230-4c31-902e-82ae4fe71866',
              ).then((value) {
                rawData = value;
                setState(() {});
              });
            },
            icon: const Icon(Icons.refresh),
          ),
        ],
      ),
      body: rawData == null
          ? const Center(child: CircularProgressIndicator())
          : ListView.builder(
              itemBuilder: (context, index) => Card(
                ///
                /// used suggestion data
                child: ListTile(
                  onTap: () => debugPrint(
                    'Product ID for your service: ${rawData!.suggestions[index].product!.idOnStore}',
                  ),
                  leading: CircleAvatar(
                    backgroundImage: NetworkImage(
                      rawData!.suggestions[index].product!.image,
                    ),
                  ),
                  title: Text(
                    rawData!.suggestions[index].product!.name,
                  ),
                ),
              ),
              itemCount: rawData!.suggestions.length,
            ),
    );
  }
}
2
likes
0
points
49
downloads

Publisher

verified publishercorca.ai

Weekly Downloads

This is the placement service for the ADCIO project in Flutter.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

adcio_analytics, adcio_core, flutter, http

More

Packages that depend on adcio_placement