How can I align the buttons on the appBar to the left?
import 'package:flutter/material.dart';
class TestPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Row(
children: <Widget>[
Text(
'Actions Align Left',
),
FlatButton(
child: Text('FlatButton'),
)
],
)
),
);
}
}