orion_talk_widget 0.0.3 copy "orion_talk_widget: ^0.0.3" to clipboard
orion_talk_widget: ^0.0.3 copied to clipboard

discontinued

The Orion Talk Widget (UI) can be used to implement flutter apps. This UI has a relation with Orion Talk Service

example/README.md

Examples #

The Orion Talk Widget implements a container with Cupertino Flutter UI components. The below example is Flutter App where the Orion Talk Widget class is used. Note in this examples that OrionTalkWidget object is used as a child of CupertinoPageScaffold. Thus, the Orion Talk Widget can be used to compose a UI of an APP.

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

import 'package:orion_talk_widget/OrionTalkWidget.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return CupertinoApp(
      home: BaseLayout(),
      theme: CupertinoThemeData(primaryColor: Colors.green),
    );
  }
}

class BaseLayout extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return CupertinoPageScaffold(
        navigationBar: CupertinoNavigationBar(
          middle: Text("Orion Talk"),
        ),
        child: OrionTalkWidget());
  }
}
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

The Orion Talk Widget (UI) can be used to implement flutter apps. This UI has a relation with Orion Talk Service

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http

More

Packages that depend on orion_talk_widget