solucx_widget 0.0.2 copy "solucx_widget: ^0.0.2" to clipboard
solucx_widget: ^0.0.2 copied to clipboard

SoluCX Widget

SoluCXWidget #

SoluCXWidget is a Flutter widget that allows you to integrate SoluCX functionalities into your Flutter application.

Installation #

Add the following dependency to your pubspec.yaml file:

dependencies:
    solucx_widget: ^1.0.0

Then, run flutter pub get to install the new dependency.

Usage #

Import the package in your Dart file:

import 'package:solucx_widget/solucx_widget.dart';

Use the SoluCXWidget in your widget tree:

class MyApp extends StatelessWidget {
    @override
    Widget build(BuildContext context) {
        return MaterialApp(
            home: Scaffold(
                appBar: AppBar(
                    title: Text('SoluCX Widget Example'),
                ),
                body: Center(
                    child: SoluCXWidget(
                        // Add your widget parameters here
                    ),
                ),
            ),
        );
    }
}

Parameters #

  • parameter1: Description of parameter1.
  • parameter2: Description of parameter2.

Example #

Here is a complete example of how to use the SoluCXWidget:

import 'package:flutter/material.dart';
import 'package:solucx_widget/solucx_widget.dart';

void main() {
    runApp(MyApp());
}

class MyApp extends StatelessWidget {
    @override
    Widget build(BuildContext context) {
        return MaterialApp(
            home: Scaffold(
                appBar: AppBar(
                    title: Text('SoluCX Widget Example'),
                ),
                body: Center(
                    child: SoluCXWidget(
                        // Add your widget parameters here
                    ),
                ),
            ),
        );
    }
}

License #

This project is licensed under the MIT License - see the LICENSE file for details.