nativescript v8.0.0 Release Notes

Release Date: 2021-04-06 // about 3 years ago
  • ๐Ÿ› Bug Fixes

    ๐Ÿ”‹ Features

    ๐Ÿ’ฅ BREAKING CHANGES

    • core: BottomNavigation and Tabs moved to @nativescript-community

    โšก๏ธ If using BottomNavigation, just install @nativescript-community/ui-material-bottom-navigation and update your imports to use it.

    โšก๏ธ If using Tabs, just install @nativescript-community/ui-material-tabs and update your imports to use it.

    • core: support web standard #rrggbbaa format

    BEFORE:

    // #aarrggbb
    
    const color = new Color('#ff00ff00');
    
    Label {
        background-color: #ff00ff00;
    }
    

    AFTER:

    // #rrggbbaa
    
    const color = new Color('#00ff00ff');
    
    Label {
        background-color: #00ff00ff;
    }