Chapter 3 - textSelectionColor

// 4
bottomNavigationBar: BottomNavigationBar( 
  // 5
  selectedItemColor: Theme.of(context).textSelectionColor,// Deprecated  
  // 6
  items: <BottomNavigationBarItem>[ 
    BottomNavigationBarItem(
      icon: Icon(Icons.card_giftcard),
      title: Text('Card')), // Deprecated
    BottomNavigationBarItem(
      icon: Icon(Icons.card_giftcard),
      title: Text('Card2')),
    BottomNavigationBarItem(
      icon: Icon(Icons.card_giftcard),
      title: Text('Card3')),
  ]
)

// 4
bottomNavigationBar: BottomNavigationBar(
  // 5        
  selectedItemColor: 
  Theme.of(context).textSelectionTheme.selectionColor,
   // 6        
   items: <BottomNavigationBarItem>[
          const BottomNavigationBarItem(
            icon: Icon(Icons.card_giftcard),
            label: ('Card')),
          const BottomNavigationBarItem(
            icon: Icon(Icons.card_giftcard),
            label: ('Card2')),
          const BottomNavigationBarItem(
            icon: Icon(Icons.card_giftcard),
            label: ('Card3')),
        ],
      ),

https://api.flutter.dev/flutter/material/ThemeData/textSelectionColor.html

1 Like

:+1:t2:

@mitai please make sure you are using the latest edition of the book thanks!

sorry it was an old version of the book