Dashboard Temp Share Shortlinks Frames API

HTMLify

nav_items.dart
Views: 194 | Author: cody
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
import 'package:flutter/material.dart';

List<String> navTitles = [
  "Home",
  "Skills",
  "Projects",
  "Contact",
  "Blog",
];

List<IconData> navIcons = [
  Icons.home,
  Icons.handyman_outlined,
  Icons.apps,
  Icons.quick_contacts_mail,
  Icons.web,
];