bubble 1.1.9 bubble: ^1.1.9 copied to clipboard
A Flutter widget for chat like a speech bubble in Whatsapp and others.
import 'package:flutter/material.dart';
import 'package:bubble/bubble.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
static const TITLE = 'Bubble Demo';
@override
Widget build(BuildContext context) {
return MaterialApp(
title: TITLE,
theme: ThemeData(
primarySwatch: Colors.teal,
),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key}) : super(key: key);
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
double pixelRatio = MediaQuery.of(context).devicePixelRatio;
double px = 1 / pixelRatio;
BubbleStyle styleSomebody = BubbleStyle(
nip: BubbleNip.leftTop,
color: Colors.white,
elevation: 1 * px,
margin: BubbleEdges.only(top: 8.0, right: 50.0),
alignment: Alignment.topLeft,
);
BubbleStyle styleMe = BubbleStyle(
nip: BubbleNip.rightTop,
color: Color.fromARGB(255, 225, 255, 199),
elevation: 1 * px,
margin: BubbleEdges.only(top: 8.0, left: 50.0),
alignment: Alignment.topRight,
);
return Scaffold(
appBar: AppBar(
title: Text('${MyApp.TITLE} (pixel ratio: $pixelRatio)'),
),
body: Container(
color: Colors.yellow.withAlpha(64),
child: ListView(
padding: EdgeInsets.all(8.0),
children: [
Divider(height: 40, color: Colors.black),
Bubble(
padding: BubbleEdges.all(2),
alignment: Alignment.topRight,
nip: BubbleNip.rightTop,
color: Color.fromARGB(255, 225, 255, 199),
child: Text('Hello, World!'),
),
Bubble(
margin: BubbleEdges.only(top: 10),
padding: BubbleEdges.all(2),
alignment: Alignment.topLeft,
nip: BubbleNip.leftTop,
child: Text('Hi, developer!'),
),
Bubble(
margin: BubbleEdges.only(top: 10),
padding: BubbleEdges.all(20),
alignment: Alignment.topRight,
nip: BubbleNip.rightTop,
color: Color.fromARGB(255, 225, 255, 199),
child: Text('Hello, World!'),
),
Bubble(
margin: BubbleEdges.only(top: 10),
padding: BubbleEdges.all(20),
alignment: Alignment.topLeft,
nip: BubbleNip.leftTop,
child: Text('Hi, developer!'),
),
Divider(height: 40, color: Colors.black),
],
),
// child: ListView(
// padding: EdgeInsets.all(8.0),
// children: [
// Bubble(
// alignment: Alignment.center,
// color: Color.fromARGB(255, 212, 234, 244),
// elevation: 1 * px,
// margin: BubbleEdges.only(top: 8.0),
// child: Text('TODAY', style: TextStyle(fontSize: 10)),
// ),
// Bubble(
// style: styleSomebody,
// child: Text('Hi Jason. Sorry to bother you. I have a queston for you.'),
// ),
// Bubble(
// style: styleMe,
// child: Text('Whats\'up?'),
// ),
// Bubble(
// style: styleSomebody,
// child: Text('I\'ve been having a problem with my computer.'),
// ),
// Bubble(
// style: styleSomebody,
// margin: BubbleEdges.only(top: 2.0),
// nip: BubbleNip.no,
// child: Text('Can you help me?'),
// ),
// Bubble(
// style: styleMe,
// child: Text('Ok'),
// ),
// Bubble(
// style: styleMe,
// nip: BubbleNip.no,
// margin: BubbleEdges.only(top: 2.0),
// child: Text('What\'s the problem?'),
// ),
// ],
// ),
),
);
}
}