byte_util 1.1.1 copy "byte_util: ^1.1.1" to clipboard
byte_util: ^1.1.1 copied to clipboard

outdated

byte utilities can read string to byte array,or convert byte array to readable string, or base64 convert.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'byte util example',
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text('byte util example')),
      body: Center(child: WidgetExample()),
    );
  }
}
1
likes
0
points
1.56k
downloads

Publisher

unverified uploader

Weekly Downloads

byte utilities can read string to byte array,or convert byte array to readable string, or base64 convert.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on byte_util