- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我有一个带有四个图标的底部导航栏,默认颜色是我的应用程序的主题颜色(原色)。我想将选定的图标更改为渐变,所以我写了一个带有装饰的容器,但它不起作用任何人都可以帮助我,它应该如图所示。谢谢
import 'package:flutter/material.dart';
import 'dart:async';
import 'dart:io';
import 'dart:convert';
import 'package:http/http.dart' as http;
import 'package:material_search/material_search.dart';
import 'dart:ui' as ui;
class DrawerItem {
String title;
IconData icon;
DrawerItem(this.title, this.icon);
}
class HomeScreen extends StatefulWidget {
final drawerItems = [
new DrawerItem("Dashboard", Icons.dashboard),
new DrawerItem("Live Tracking", Icons.track_changes),
new DrawerItem("Notifications", Icons.notifications),
new DrawerItem("Account Details", Icons.exit_to_app),
// new DrawerItem("Reports", Icons.dock),
];
@override
State<StatefulWidget> createState() {
return new HomeScreenState();
}
}
class HomeScreenState extends State<HomeScreen> {
final GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey<ScaffoldState>();
final JsonDecoder _decoder = new JsonDecoder();
String pageValue = 'Dashboard';
IconData selectedItem = Icons.dashboard ;
List<IconData> itemsList = [
Icons.dashboard, Icons.location_on, Icons.notifications, Icons.account_circle,
];
//Vehicles Data
final _vehicleNumbers = [];
String vehicleNum = '';
static String _id;
String value;
String getValue;
dynamic vehicleData;
var vehiclesLength = 0;
var addVehiclesLength = 0;
int bottomNavBarIndex = 0;
Widget appBarTitle = new Text("Dashboard",
style: TextStyle(
fontSize: 24.0,
// fontWeight: FontWeight.bold,
color: Colors.grey[600]
),
textAlign: TextAlign.center
);
bool search = false;
//UserDetails
static dynamic user = new User();
String key = user.getKey();
int _selectedDrawerIndex = 0;
_getDrawerItemWidget(int pos) {
switch (pos) {
case 0:
return new Dashboard();
case 1:
return new LiveTracking();
case 2:
return new Notifications();
case 3:
return new AccountProfile();
default:
return new Text("Error");
}
}
_onSelectItem(int index) {
if(widget.drawerItems[_selectedDrawerIndex].title == 'Dashboard'){
this.appBarTitle = new Text(widget.drawerItems[_selectedDrawerIndex].title,
style: TextStyle(
fontSize: 24.0,
// fontWeight: FontWeight.bold,
color: Colors.grey[600],
),
textAlign: TextAlign.center
);
this.pageValue = widget.drawerItems[_selectedDrawerIndex].title;
}
else if(widget.drawerItems[_selectedDrawerIndex].title == 'Live Tracking'){
this.appBarTitle = new Text(widget.drawerItems[_selectedDrawerIndex].title,
style: TextStyle(
fontSize: 24.0,
// fontWeight: FontWeight.bold,
color: Colors.grey[600],
),
textAlign: TextAlign.center
);
this.pageValue = widget.drawerItems[_selectedDrawerIndex].title;
}
else if(widget.drawerItems[_selectedDrawerIndex].title == 'Notifications'){
this.appBarTitle = new Text(widget.drawerItems[_selectedDrawerIndex].title,
style: TextStyle(
fontSize: 24.0,
// fontWeight: FontWeight.bold,
color: Colors.grey[600],
),
textAlign: TextAlign.center
);
this.pageValue = widget.drawerItems[_selectedDrawerIndex].title;
}
else if(widget.drawerItems[_selectedDrawerIndex].title == 'Account Details'){
this.appBarTitle = new Text(widget.drawerItems[_selectedDrawerIndex].title,
style: TextStyle(
fontSize: 24.0,
// fontWeight: FontWeight.bold,
color: Colors.grey[600],
),
textAlign: TextAlign.center
);
this.pageValue = widget.drawerItems[_selectedDrawerIndex].title;
}
}
//Vehicle List Data
Future<dynamic> getVehiclesData() async {
var response = await http.get(
Uri.encodeFull(API.dashboardData),
headers: {HttpHeaders.AUTHORIZATION: "Basic " + key});
final String res = response.body;
vehicleData = _decoder.convert(res);
vehiclesLength = vehicleData["_items"].length;
setState(() {
addVehiclesLength = vehiclesLength;
for(int i=0;i<addVehiclesLength;i++){
if(vehicleData["_items"][i]["vehicle"] != null){
_vehicleNumbers.add(vehicleData["_items"][i]["vehicle"]["registration"].toString());
}
else{
_vehicleNumbers.add('New vehicle');
}
}
});
}
_buildMaterialSearchPage(BuildContext context) {
return new MaterialPageRoute<String>(
settings: new RouteSettings(
name: 'material_search',
isInitialRoute: false,
),
builder: (BuildContext context) {
return new Material(
child: new MaterialSearch<String>(
placeholder: 'Search',
results: _vehicleNumbers.map((getValue) => new MaterialSearchResult<String>(
value: getValue,
text: "$getValue",
)).toList(),
filter: (dynamic value, String criteria) {
return value.toLowerCase().trim()
.contains(new RegExp(r'' + criteria.toLowerCase().trim() + ''));
},
onSelect: (dynamic value) => Navigator.of(context).pop(value),
),
);
}
);
}
//Logout functionality...
void _logout() async {
var db = new DatabaseHelper();
await db.deleteUsers();
}
//To initiate state of the class before loading that paticular page...
@override
void initState() {
super.initState();
print('came to init state');
getVehiclesData();
}
_showMaterialSearch(BuildContext context) {
if(pageValue != null && pageValue == 'Dashboard'){
Navigator.of(context)
.push(_buildMaterialSearchPage(context))
.then((dynamic value) {
setState(() => vehicleNum = value as String);
String check = vehicleNum;
// print('check = $check');
if(check != '' && check != null){
check = '';
_id = _getId(vehicleNum);
print(_id);
Navigator.push(context, new MaterialPageRoute(builder: (context) => new SingleVehicleDashboard(value:_id)));
}
});
}
else if(pageValue != null && pageValue == 'Live Tracking'){
Navigator.of(context)
.push(_buildMaterialSearchPage(context))
.then((dynamic value) {
setState(() => vehicleNum = value as String);
String check = vehicleNum;
// print('check = $check');
if(check != '' && check != null){
check = '';
_id = _getId(vehicleNum);
print(_id);
Navigator.push(context, new MaterialPageRoute(builder: (context) => new SingleVehicleDashboard(value:_id)));
}
});
}
}
String _getId(String vehicleNum){
String id;
for(int i=0;i<addVehiclesLength;i++){
if(vehicleData["_items"][i]["vehicle"] != null){
if(vehicleData["_items"][i]["vehicle"]["registration"].toString().contains(vehicleNum)){
id = vehicleData["_items"][i]["vehicle"]["_id"];
}
}
}
return id;
}
@override
Widget build(BuildContext context) {
return new Scaffold(
key: _scaffoldKey,
appBar: new AppBar(
backgroundColor:
widget.drawerItems[_selectedDrawerIndex].title == 'Account Details'?
Colors.grey[200]:Colors.white,
iconTheme: new IconThemeData(color: Colors.black),
// here we display the title corresponding to the fragment
// you can instead choose to have a static title
title: new Center(child: appBarTitle),
actions: <Widget>[
widget.drawerItems[_selectedDrawerIndex].title == 'Dashboard' || widget.drawerItems[_selectedDrawerIndex].title == 'Live Tracking' ?
new IconButton(
onPressed: () {
search = true;
_showMaterialSearch(context);
},
tooltip: 'Search',
icon: new Icon(Icons.search),
) : new Text(''),
widget.drawerItems[_selectedDrawerIndex].title == 'Account Details' ?
new IconButton(
onPressed: () {
_logout();
Navigator.of(context).pushReplacementNamed("/login");
},
tooltip: 'Search',
icon: new Icon(Icons.exit_to_app),
) : new Text(''),
widget.drawerItems[_selectedDrawerIndex].title == 'Notifications' ?
new Text(''):new Text('')
],
elevation:
widget.drawerItems[_selectedDrawerIndex].title == 'Notifications' ?
2.0:0.0,
),
bottomNavigationBar: BottomNavigationBar(
currentIndex: bottomNavBarIndex,
onTap: (int index) {
setState(() {
bottomNavBarIndex = index;
_selectedDrawerIndex = index;
_onSelectItem(index);
selectedItem = itemsList[index];
print(index);
});
},
items: itemsList.map((data) {
return BottomNavigationBarItem(
icon: selectedItem == data ? ShaderMask(
blendMode: BlendMode.srcIn,
shaderCallback: (Rect bounds) {
return ui.Gradient.linear(
Offset(4.0, 24.0),
Offset(24.0, 4.0),
[Colors.greenAccent[200],Colors.blueAccent[200]]
);
},
child: Icon(data),
) : Icon(data, color: Colors.grey[600]),
title: Container(),
);
}).toList()
),
// bottomNavigationBar: new BottomAppBar(
// child: BottomNavigationBar(
// currentIndex: bottomNavBarIndex,
// onTap: (int index){
// setState(() {
// bottomNavBarIndex = index;
// _selectedDrawerIndex = index;
// _onSelectItem(index);
// });
// },
// items:
// [
// BottomNavigationBarItem(
// icon: new Icon(Icons.dashboard),
// title: new Text(''),
// ),
// BottomNavigationBarItem(
// icon: new Icon(Icons.location_on),
// title: new Text(''),
// ),
// BottomNavigationBarItem(
// icon: new Icon(Icons.notifications),
// title: new Text(''),
// ),
// BottomNavigationBarItem(
// icon: new Icon(Icons.account_circle),
// title: new Text(''),
// ),
// ],
// ),
// ),
// endDrawer: new Drawer(
// child: Column(
// children: <Widget>[
// new Text(
// '',
// style: new TextStyle(
// fontSize: 30.0,
// fontWeight: FontWeight.bold,
// ),
// textAlign: TextAlign.center,
// ),
// new Text(
// 'Notifications',
// style: new TextStyle(
// fontSize: 24.0,
// fontWeight: FontWeight.bold,
// ),
// textAlign: TextAlign.center,
// ),
// Flexible(
// child: ListView(
// children: List.generate(notificationsLength,
// (i) => new Container(
// decoration: new BoxDecoration(
// border: new Border(
// bottom: BorderSide(
// color: Colors.grey[300],
// ))),
// height: 100.0,
// padding: EdgeInsets.fromLTRB(8.0, 5.0, 8.0, 5.0),
// child: new Text(
// addNotifications["_items"][i]["alert_message"],
// style: new TextStyle(fontSize: 14.0),
// ),
// )),
// ),
// )
// ],
// ),
// ),
body: new Center(
child:_getDrawerItemWidget(_selectedDrawerIndex),
),
);
}
}
最佳答案
您可以在 ShaderMask 的帮助下实现您想要的效果 - 您可以使用各种渐变来实现您想要的效果。例如检查下面的代码:
bottomNavigationBar: BottomNavigationBar(
currentIndex: bottomNavBarIndex,
onTap: (int index) {
setState(() {
bottomNavBarIndex = index;
_selectedDrawerIndex = index;
_onSelectItem(index);
});
},
items: [
BottomNavigationBarItem(
activeIcon: ShaderMask(
shaderCallback: (Rect bounds) {
return RadialGradient(
center: Alignment.topLeft,
radius: 0.5,
colors: <Color>[
Colors.greenAccent[200],
Colors.blueAccent[200]
],
tileMode: TileMode.repeated,
).createShader(bounds);
},
child: Icon(Icons.dashboard),
),
icon: new Icon(Icons.dashboard, color: Colors.grey),
title: new Text(''),
),
BottomNavigationBarItem(
activeIcon: ShaderMask(
shaderCallback: (Rect bounds) {
return RadialGradient(
center: Alignment.topLeft,
radius: 1.0,
colors: <Color>[
Colors.greenAccent[200],
Colors.blueAccent[200]
],
tileMode: TileMode.mirror,
).createShader(bounds);
},
child: Icon(Icons.location_on),
),
icon: Icon(Icons.location_on, color: Colors.grey),
title: new Text(''),
),
BottomNavigationBarItem(
activeIcon: ShaderMask(
shaderCallback: (Rect bounds) {
return RadialGradient(
center: Alignment.topLeft,
radius: 1.0,
colors: <Color>[
Colors.greenAccent[200],
Colors.blueAccent[200]
],
tileMode: TileMode.mirror,
).createShader(bounds);
},
child: Icon(Icons.notifications),
),
icon: Icon(Icons.notifications, color: Colors.grey),
title: Text(''),
),
BottomNavigationBarItem(
activeIcon: ShaderMask(
shaderCallback: (Rect bounds) {
return RadialGradient(
center: Alignment.topLeft,
radius: 1.0,
colors: <Color>[
Colors.greenAccent[200],
Colors.blueAccent[200]
],
tileMode: TileMode.mirror,
).createShader(bounds);
},
child: Icon(Icons.account_circle),
),
icon: Icon(Icons.account_circle, color: Colors.grey),
title: Text(''),
),
],
),
关于android - 如何在 flutter 中为底部导航栏图标提供渐变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52982113/
ion-nav-view 嵌套有一个奇怪的问题。当我在浏览器中加载应用程序时,我可以看到 URL 正在更改为 /app/menu,但页面上没有出现 menu.html 中的内容。页面是空白的。 以下是
运行截图如下: 源码如下: CN_TEST1
我正在开发一个示例reactjs应用程序(在学习过程中)。我有一个页面,其中列出了用户列表和一个用于添加新用户的添加按钮。 当我单击添加按钮时,我应该导航到用户表单以创建新用户。 单击用户表单中的提交
我的导航栏中的导航链接有问题。首先,它没有在导航栏中间对齐,如下所示: 另一部分是,我正在使用填充来执行此操作,因此如果我放置除“测试”以外的任何内容或将其放在不同的情况下,等等。它会重复该框。代码预
基本上,我有一个网站,我正在尝试使用 ajax 导航构建它,以便它获取网页并将它们加载到同一页面中。问题是当我正常放入内容时它工作正常但是当我尝试将内容添加到外部文档并从导航中访问它时框拆分你可以在这
以下站点左侧菜单的导航使用 CSS 进行鼠标悬停链接。 PVH 当我获取导航代码并将其设为单独的页面时。然后鼠标悬停链接不起作用。可能是什么原因? Test 最佳答案 可能... 对此事有话要说
一 问题描述 标准的 Web 浏览器包含在最近访问过的页面中向后和向前移动的功能。实现这些特性的一种方法是使用双栈来跟踪前后移动可以到达的页面。 Web 导航支持下面的命令。 后退页面:将当前页面推到
我想有条件地导航到某个页面。如果某些条件为真,我想导航到其他页面,否则我想留在同一页面上。我有类似的东西:- 在 bean.navigate 我有类似的东西:- public String navi
问题:有没有办法让按钮在用户控件中表现得像超链接? 我已经搜索了几天,但没有找到解决此问题的人。如何使用按钮在 WPF 应用程序中导航?具体来说,如何使用户控件内的按钮在其主机框架中导航?请记住,用户
我尝试使用 Android Navigation 组件并遇到了回栈问题。 我有 fragment A,B。 我写的: Navigation.findNavController(view).naviga
我有一个父布局,并从该子站点派生而来。 父级布局具有一个导航,每个导航点代表一个子站点。 如何在父布局中突出显示当前查看的子站点? 如果看起来如何? 最佳答案 可能不是最好的选择,但这是基于路由名称的
我正在开发Blazor服务器端应用程序。熟悉Blazor的任何人都在左侧的NavBar中填充超链接,并以特殊的CSS类进行装饰。我的问题是,如果任何内容都已编辑,我将试图停止导航并在一个特定页面上显示
我是 flutter 的新手,我正在开发一个具有多个屏幕的应用程序。 我想知道如何阻止 flutter 创建同一路线的多个屏幕, 例如我有 第1页和 第2页 ,如果我单击按钮导航到第 2 页并再次单击
我们的设计师创建了一个类似于上面屏幕的布局。主要思想是创建一个只有一个屏幕的应用程序,当您点击一个按钮时,屏幕的红色部分会发生变化(即 2 个文本框而不是 1 个文本框)。这个应用程序将是一个多平台应
有人可以解释为什么从pageE返回时不打印efeioi吗? 页面A Navigator.pushNamed(context, PageB.ROUTE).then((onValue) {
我需要在 iOS 应用程序中创建一个导航,如下图所示。 它包含一个标签栏和一个侧边菜单。 问题是正确的导航菜单按钮,应该在所有选项卡中都可见。甚至每个选项卡的所有内部屏幕。 当用户从侧面菜单中选择一个
这个问题在这里已经有了答案: Vim: move around quickly inside of long line (8 个答案) 关闭 8 年前。 我正在用 vim 编辑一个文本文件,我已经使
我很困惑,如何执行操作来创建从用户位置到用户选择/点击图钉覆盖层的图钉覆盖层(谷歌位置)的路线/导航。这是我的 map Activity ,它将显示我的 map 。 public class Plac
我正在使用 jQuery 函数 .animate 来一一突出显示导航链接。他们在 ul 中。我可以让它工作,只是想知道是否有一种方法可以缩短我的代码,这样我就不必单独突出显示每个项目。提前致谢 $(d
我正在创建一个带有“ anchor 导航”的网站,就像 Facebook 和谷歌邮件一样。我已经让它工作了,但还不完全。当我加载带有 #contact 之类的页面时,除非我单击它的链接,否则它不会加载
我是一名优秀的程序员,十分优秀!