Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91125380
membersBar.Dart
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 8, 04:20
Size
1 KB
Mime Type
text/x-c++
Expires
Sun, Nov 10, 04:20 (2 d)
Engine
blob
Format
Raw Data
Handle
22201400
Attached To
R10646 Orchestration
membersBar.Dart
View Options
import 'package:flutter/material.dart';
import 'package:flutter/foundation.dart';
import 'package:student/model/Group.dart';
class MembersBar extends StatefulWidget {
MembersBar({Key key}) : super(key: key);
@override
_MembersBarState createState() => _MembersBarState();
}
class _MembersBarState extends State<MembersBar> {
Widget build(BuildContext context) {
return Container(
height: 50,
width: 700,
decoration: BoxDecoration(border: Border.all(color: Colors.blueAccent)),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
Icon(Icons.person),
Text(
group.member1name,
style: const TextStyle(
color: Colors.black,
fontSize: 22.0,
fontWeight: FontWeight.w600,
),
),
SizedBox(width: 20),
Icon(Icons.person),
Text(
group.member2name,
style: const TextStyle(
color: Colors.black,
fontSize: 22.0,
fontWeight: FontWeight.w600,
),
),
SizedBox(width: 20),
Icon(Icons.person),
Text(
group.member3name,
style: const TextStyle(
color: Colors.black,
fontSize: 22.0,
fontWeight: FontWeight.w600,
),
),
Text(
'',
style: const TextStyle(
color: Colors.white70,
fontSize: 15.0,
),
),
SizedBox(height: 40),
],
));
}
}
Event Timeline
Log In to Comment