Using gameNetwork.request() to display google play network/ios leaderboards "inapp"

Hi,

Is it possible to store leaderboard and achievementdata using the gamenetwork plugins, and only request the data using gamenetwork.request() or something similar, and then display it within your own designed scenes instead of beeing directed to an unstylable page like if you use gameNetwork.showLeaderboard().

I haven been looking a bit at the documentation here: http://docs.coronalabs.com/plugin/gameNetwork-google/request.html

Especially at this: 

[lua]gameNetwork.request( “loadScores”,
{
leaderboard =
{
category = “insert category”,
playerScope = “Global”, – Global, FriendsOnly
timeScope = “AllTime”, – AllTime, Week, Today
range = {1,5},
playerCentered = true,
},
listener = requestCallback
})[/lua]

And wonder if there is any easy way to write this info to screen and then style it as i want to.