diff --git a/angular/BREAKING.md b/angular/BREAKING.md
index afe70c24e6..0367b7da4c 100644
--- a/angular/BREAKING.md
+++ b/angular/BREAKING.md
@@ -3,13 +3,14 @@
A list of the breaking changes introduced in Ionic Angular v4.
-- [Alert](#alert)
- [Action Sheet](#action-sheet)
-- [Dynamic Mode](#dynamic-mode)
+- [Alert](#alert)
+- [Back Button](#back-button)
- [Button](#button)
- [Chip](#chip)
- [Colors](#colors)
- [Datetime](#datetime)
+- [Dynamic Mode](#dynamic-mode)
- [FAB](#fab)
- [Fixed Content](#fixed-content)
- [Icon](#icon)
@@ -21,40 +22,18 @@ A list of the breaking changes introduced in Ionic Angular v4.
- [List Header](#list-header)
- [Menu Toggle](#menu-toggle)
- [Nav](#nav)
+- [Navbar](#navbar)
- [Option](#option)
- [Radio](#radio)
- [Range](#range)
- [Segment](#segment)
- [Select](#select)
- [Spinner](#spinner)
-- [Text / Typography](#text--typography)
- [Tabs](#tabs)
+- [Text / Typography](#text--typography)
- [Theming](#theming)
- [Toolbar](#toolbar)
-## Alert
-
-The `title` and `subTitle` properties has been renamed to `header` and `subHeader` respectivelly.
-
-**Old Usage Example:**
-
-```js
-const alert = await alertCtrl.create({
- title: 'This is the title',
- subTitle: 'this is the sub title'
-});
-await alert.present();
-```
-
-**New Usage Example:**
-
-```js
-const alert = await alertCtrl.create({
- header: 'This is the title',
- subHeader: 'this is the sub title'
-});
-await alert.present();
-```
## Action Sheet
@@ -80,9 +59,56 @@ const actionSheet = await actionSheetCtrl.create({
await actionSheet.present();
```
-## Dynamic Mode
-Components are no longer able to have their mode changed dynamically. You can change the mode before the first render, but after that it will not style properly because only the initial mode's styles are included.
+## Alert
+
+The `title` and `subTitle` properties has been renamed to `header` and `subHeader` respectivelly.
+
+**Old Usage Example:**
+
+```js
+const alert = await alertCtrl.create({
+ title: 'This is the title',
+ subTitle: 'this is the sub title'
+});
+await alert.present();
+```
+
+**New Usage Example:**
+
+```js
+const alert = await alertCtrl.create({
+ header: 'This is the title',
+ subHeader: 'this is the sub title'
+});
+await alert.present();
+```
+
+
+## Back Button
+
+The back button is no longer added by default to a navigation bar. It should be explicitly written in a toolbar:
+
+**Old Usage Example:**
+
+```html
+