Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1.  
  2.  
  3. Card faqItem(String question, String answer) {
  4. return Card(child: ExpansionTile(
  5. title: Text(question),
  6. children: <Widget>[
  7. Align(alignment: Alignment.topLeft, child: Padding(
  8. padding: EdgeInsets.only(left: screenAwareSize(15.0, 25.0, context), bottom: screenAwareSize(15.0, 25.0, context),),
  9. child: Text(answer),
  10. ),)
  11. ],),);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement