aes_assets_widget 0.0.4 copy "aes_assets_widget: ^0.0.4" to clipboard
aes_assets_widget: ^0.0.4 copied to clipboard

A new Flutter plugin.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';
import 'package:aes_assets_widget/aes_assets_widget.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    // We also handle the message potentially returning null.

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: AesAssetsWidget(
            dataList: [],
            title: '图片资源',
            uploadPath:
                'http://10.0.0.125:10086/smart-admin-api/api/file/localUpload',
            authToken: const {
              'x-access-token':
                  "eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiI0NDEyZDNhYi01YzQ0LTQyNjgtOTI4ZC0yNjQxYTQ1MWNiNGQiLCJpZCI6MSwibmJmIjoxNjYwNzg5MzQ5LCJleHAiOjE2NjEzOTQxNDl9.-1Yr10AeQKroT_v1xjrvcKvX5mpT5LyCN5WVmPgZ0pyzkbU71oyaScLA7-6u6hd24DUr3B7kUh9dxJ5lejTzrw "
            },
          ),
        ),
      ),
    );
  }
}
1
likes
55
pub points
0%
popularity

Publisher

unverified uploader

A new Flutter plugin.

Homepage

Documentation

API reference

License

Apache-2.0, BSD-3-Clause (license)

Dependencies

dio, flutter, image_picker, photo_view

More

Packages that depend on aes_assets_widget