- Download kali for raspberry pi & flash the OS onto the SD card
iw phy phy0 interface add mon0 type monitor
ifconfig mon0 up
*alternatively try: airmon-ng start wlan0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. import provider package - https://pub.dev/packages/provider | |
2. create a change notifier | |
class CartModel extends ChangeNotifier { | |
final List<Item> _items = []; | |
void add(Item item) { | |
_items.add(item); | |
notifyListeners(); | |
} | |
} | |
3. Run app with provider |